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 2025: Call for Content

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!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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