I have this statement written but when I run the code my format statement doesn't print. Any idea what I'm doing wrong?
data work.HW6;
set TMP1.hw6;
proc format;
value $TestSite 'Thoracic'='T' 'Lumbar-Spine'='LS';
value TypeOfImaging 1='MRI' 2='CT' 3='Plain';
proc sort data=work.HW6 nodupkey;
by descending dos;
proc print data=work.HW6;
run;
You would have to associate the Format with the variables that you want to use it.
Example: (Assumes that variables Thisvar and Thatvar are in the data set, Thisvar is a character variable and that you want those variables to show the formatted values.
proc print data=work.HW6; FORMAT thisvar $testsite. thatvar TypeofImaging. ; run;
If you want a variable to use a format by default then you make the association permanent by assigning it in a data step or use the utility procedure Datasets to modify the set as such.
The data step version would look like:
data work.HW6; set TMP1.hw6; format thisvar $testsite. thatvar TypeofImaging. ; run;
The format does not actually have to exist in your session when assigned the variable but you should make sure it is available when you want to use it.
You would have to associate the Format with the variables that you want to use it.
Example: (Assumes that variables Thisvar and Thatvar are in the data set, Thisvar is a character variable and that you want those variables to show the formatted values.
proc print data=work.HW6; FORMAT thisvar $testsite. thatvar TypeofImaging. ; run;
If you want a variable to use a format by default then you make the association permanent by assigning it in a data step or use the utility procedure Datasets to modify the set as such.
The data step version would look like:
data work.HW6; set TMP1.hw6; format thisvar $testsite. thatvar TypeofImaging. ; run;
The format does not actually have to exist in your session when assigned the variable but you should make sure it is available when you want to use it.
Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.
Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.
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.