BookmarkSubscribeRSS Feed
UshaLatha
Obsidian | Level 7

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:

sum1sum2sum3
201010

 

Please advise.

 

Thanks

2 REPLIES 2
DBailey
Lapis Lazuli | Level 10

isn't i just SUM(A_ID=1 and B_ID=1) as sum3

novinosrin
Tourmaline | Level 20

Can you post a sample of what you have and the desired

sas-innovate-wordmark-2025-midnight.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


Register now!

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 917 views
  • 1 like
  • 3 in conversation