BookmarkSubscribeRSS Feed
HeatherNewton
Quartz | Level 8
I have data output in %, how do i convert it such that i can load into db2 without losing any meaning
5 REPLIES 5
Kurt_Bremser
Super User

In SAS, percentages are numeric ratios with a PERCENT format attached. Check with your DB designers how they want such values.

Do you write the data to DB/2 with SAS/ACCESS, or do you use text files for the data transfer?

HeatherNewton
Quartz | Level 8
I use proc export to csv
SASKiwi
PROC Star

If you attach the PERCENT format to a SAS variable, then percentages under 100 must be defined as a decimal less than 1. Your CSV will then contain contain values like below with a % suffix:

28         data _null_;
29           percentage = 0.1234;
30           format percentage percent8.2;
31           put percentage=;
32         run;

percentage=12.34%
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds

As @Kurt_Bremser says, check with your DB2 admin to confirm the required data format.

Kurt_Bremser
Super User

@HeatherNewton wrote:
I use proc export to csv

Then you need to ask your DB people how they want the data presented in the csv file. Most probably, they don't want the percent sign, but the percent value (not the ratio), so you would need to multiply by 100 and use a standard numeric format.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 5 replies
  • 708 views
  • 0 likes
  • 3 in conversation