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

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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