My data is as follows:
ID [num var] Percent [Character var]
1452 10
1254 20.00
4852 30
7526 40
7542 0
7530 50.00
9856 50
3256 51
7854 100
7128 500
1287 80
4568 5.00
7540 8.00
9530 9
9920 25
I'm trying to create another dataset from the above data where the percent is larger than 0 and less than or equal to 50.
I used
proc sql;
create table x as
select id, percent from test where "0"<percent<="50";
quit;
but it gives me the observation that has 100 percent.
Please help!
As you have seen, SAS compares character strings differently. Try it this way:
where 0 < input(percent, 8.) <= 50
As you have seen, SAS compares character strings differently. Try it this way:
where 0 < input(percent, 8.) <= 50
If you really want help with this, post the log. It should be relatively tiny, and the solution should be relatively simple. "Syntax error" doesn't say enough.
remove the quotes in "0"<percent<="50"; and try again. I believe the auto conversion should take effect
ok sorry,no worries as you have @Astounding converted solution.
please post your log
data have;
do var='1','2','3','4','5';
output;
end;
run;
proc sql;
create table want as
select *
from have
where 2<input(var,8.)<=4;
quit;
Not tested, but I don't believe that comparison format works in a SQL query. Try
"0" < percent and percent <="50"
Also, if your "percent" variable is character, it is VERY likely you'll get unexpected results from a character comparison. Test carefully! If "percent" is numeric, remove the double quotes from 0 and 50.
Tom
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.