return t.fun_CEILING__for_OPEN_OFFICE_CALC( to_double( _args[ 0 ] ), to_double( _args[ 1 ] ) );
}
break;
case FLOOR:
if (2 == c && ComputationMode.EXCEL == getComputationMode() ) {
return t.fun_FLOOR__for_EXCEL( to_double( _args[ 0 ] ), to_double( _args[ 1 ] ) );
}
if (2 == c && ComputationMode.OPEN_OFFICE_CALC == getComputationMode() ) {
return t.fun_FLOOR__for_OPEN_OFFICE_CALC( to_double( _args[ 0 ] ), to_double( _args[ 1 ] ) );
}
break;