Hi,
I have a query which gives the volume count of customers with A_ID=1 and B_ID=1.
I also need the count of customers having both A_ID=1 and B_ID=1. I have updated the code as follows (in red). But this does not give me the desired results.
proc sql;
select SUM(A_ID=1) as sum1, SUM(B_ID=1) as sum2,
SUM(A_ID=1,B_ID=1) as sum3
from table A,
left join table B
on A.CUST_ID=B.CUST_ID
;
quit;
My expected output is:
| sum1 | sum2 | sum3 |
| 20 | 10 | 10 |
Please advise.
Thanks
isn't i just SUM(A_ID=1 and B_ID=1) as sum3
Can you post a sample of what you have and the desired
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.