Copy the raw data below into a SAS program. Using proc print, display the data so that all the Amount values are formatted like the Amount value in the first observation of the raw data. b) Then, revise the data step so that a format for Amount is stored with the data set, and show the results in proc print, without using any format statement in proc print. Use appropriate titles that identify which part of the exercise the output comes from.
12244 $1,499.99 144
32189 $20,000 1
92314 49.28 3
What type of format and informat should be used to get the output of the 2nd variable as the first observat format.
Does this look like what you want?
data junk;
input var1 amount var3;
informat amount dollar10.;
format amount dollar10.2;
cards;
12244 $1,499.99 144
32189 $20,000 1
92314 49.28 3
;
run;
Does this look like what you want?
data junk;
input var1 amount var3;
informat amount dollar10.;
format amount dollar10.2;
cards;
12244 $1,499.99 144
32189 $20,000 1
92314 49.28 3
;
run;
Thank you so much. I did use this format syntax but didn't work for me. I used the informat syntax in the input statement, may be that's what gave me errors.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.