BookmarkSubscribeRSS Feed
deleted_user
Not applicable
Hi,


I have created as dashboard for inventory days of supply through information map. I am getting the decimal values like 997.487. I want this value to be round off in my dashboard. Pls guide me
2 REPLIES 2
AngelaHall
SAS Employee
Funny you posted this. I was noticing the same thing. My data source is a base sas table (no information map, just proc sql code) - I tried changing the formats within the sas table itself and then within the proc sql code. It actually was resetting EVERYTHING to BEST. format. So I even loose my $ signs.

Anyhow, you can run the following statement during your SAS ETL to round to the nearest .1 decimal place:

val=round(val, .1)

(you could change .1 to 0.01 to round to nearest one-hundredth ~ for instance)

I am pretty sure you could customize the expression in your information map to also do this. I'll test that idea next.

~ Angela Hall
http://sas-bi.blogspot.com
AngelaHall
SAS Employee
Actually with information maps, its really easy.
In the map, all you need to do is go to the properties of the data item, choose the 'Classification, Aggregation and Format' menu item, then select a format. When I choose dollar9. here, I actually saw my $ and no decimal places.

~ Angela Hall
http://sas-bi.blogspot.com

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 2 replies
  • 893 views
  • 0 likes
  • 2 in conversation