Good day,
Can someone please help me.
I have a list of ID numbers (915) out of this list i need to see 2 things :
1. if this ID applied at the same dealer and how many time
2. if this id applied at different dealers and how many time.
please can you assist me on the logic
I think you can answer both questions by looking in this result. But you need to be more precise on your requirement:
proc sql;
select id, dealer, count(*) as no
from have
group by id, dealer;
quit;
thank you, so this answers my question to see where the same ID went to the same dealer. but I also want to see the same Id that went to different dealers.
It's already there. If an id has more than one result line, they went to different dealers.
If you have more specific needs, post how the report(s) should look.
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.