All,
I am using Medicare data and trying to figure out a way to find the number of unique ids (there are several duplicate bene_ids) with one condition (back_pn_office_visit=1). The following code for unique bene_ids works, but I can't figure out how to add the condition. Any ideas? Thank you!
proc sql;
select count (distinct bene_id) as in 'n_id' from back_analysis_2013A;
quit;
where does 'back_pn_office_visit=1' go?
Monica
Monica
Some of your syntax is off. I think you want something like:
proc sql;
select count (distinct sex) as n_id
from sashelp.class
where age gt 12
;
quit;
Art, CEO, AnalystFinder.com
Some of your syntax is off. I think you want something like:
proc sql;
select count (distinct sex) as n_id
from sashelp.class
where age gt 12
;
quit;
Art, CEO, AnalystFinder.com
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.