Hello
I want to round up to nearest 500.
For example:
Value 200 should be rounded to 500
Value 400 should be rounded to 500
Value 500 should be stay 500
Value 4400 should be rounded to 4500
Value 4000 should be stay 4000
what is the way to doi it please?
target = round(source,500);
if target < source then target = target + 500;
data have;
input x;
want=ceil(x/500)*500;
cards;
200
400
500
4400
4000
;
My solution:
data have;
input x;
want=roundz(x+250,500);
cards;
200
400
500
4400
4000
;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.