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.
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
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.