I have a dataset with a numeric variable that has the numeric value of several different lab tests. Some of these are whole integers (25 or 100 etc) but some are with decimals (25.6849 or 100.329 etc). I need to restrict this dataset to the observations where this variable is represented by whole numbers only. I don’t want it to round the decimals to whole numbers, I want to delete any observation that has a decimal value. I have tried converting it to a text variable with PUT not specifying decimal places but SAS rounds the values out to whole numbers in the outputted text variable. Then I specified decimal places in the PUT function so I can pick out the decimal with substring function but for some reason, SAS still rounds up the number and adds 0 after the decimal so that 239.199965 becomes 239.200000 which doesn’t help me.
Any suggestions?
Many thanks all
Use a where condition:
data have;
input x1;
cards;
1
2
1.5
;
run;
data want;
set have;
where int(x1) = x1;
run;
proc print data=want noobs;
run;
Result:
x1 1 2
Use a where condition:
data have;
input x1;
cards;
1
2
1.5
;
run;
data want;
set have;
where int(x1) = x1;
run;
proc print data=want noobs;
run;
Result:
x1 1 2
Awesome! Thanks so much for the quick response! That worked great..
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.