BookmarkSubscribeRSS Feed
Ronein
Meteorite | Level 14

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?

3 REPLIES 3
Ksharp
Super User
data have;
input x;
want=ceil(x/500)*500;
cards;
200
400
500
4400
4000
;
PaigeMiller
Diamond | Level 26

My solution:

 

data have;
input x;
want=roundz(x+250,500);
cards;
200
400
500
4400
4000
;
--
Paige Miller

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 917 views
  • 4 likes
  • 4 in conversation