SAS ceil/floor issues using big numbers and wanting to ceil/floor to the nearest 10,000 - Stack Over
CEIL and FLOOR only remove decimals - specifically rounding to integer value. If you want it rounded to (above/below) multiple of 10,000, you have to do it a bit more ... You can also use the round() function... %LET ROUNDTO = 10000 ; data xyz ; S1CovA_ce...