BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
umar_milanzi
Calcite | Level 5

i have a dataset that looks like

 

customer_id      cellphone

deeee                 0897777

deesss                65788

reeesss              7866

 

(not real values)

 

I want to check which of the customer_id has the same cellphone value

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
LinusH
Tourmaline | Level 20

or

proc sql;
select *
from have
group by cellphone
having count(*) > 1
;
quit;
Data never sleeps

View solution in original post

2 REPLIES 2
Kurt_Bremser
Super User

From the hip:

proc sql;
select
  a.customer_id as cust1,
  b.customer_id as cust2,
  a.cellphone as cell
from have as a, have as b
where a.cellphone = b.cellphone and a.customer_id ne b.customer_id
;
quit;
LinusH
Tourmaline | Level 20

or

proc sql;
select *
from have
group by cellphone
having count(*) > 1
;
quit;
Data never sleeps

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 1281 views
  • 0 likes
  • 3 in conversation