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

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1280 views
  • 1 like
  • 3 in conversation