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.
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
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.