BookmarkSubscribeRSS Feed
hina
Calcite | Level 5
Hi,
I have the following code that takes a huge file houtpt073 and deletes all appropriate rows based off certain column headings (serv_type, provider_id) for all non-outpatient claims. I can follow the code until it gets to the merge statement, where I don't understand what is happening. I would like to be able to recreate this in Access. Can someone please explain the "then delete" portion?

DATA H1;
SET HF.HOUTPT073;

IF SERV_TYPE3 IN ('EMERGENCY');
RUN;

DATA H2;
SET HF.HOUTPT073;

IF SERV_TYPE1 IN ('OUTPATIENT');
IF SUBSTR(PROVIDER_ID,1,2) IN ('81','82') THEN DELETE;

RUN;

PROC SORT DATA=H1 NODUPKEY; BY CLAIM_NUMBER; RUN;
PROC SORT DATA=H2; BY CLAIM_NUMBER; RUN;

DATA HF.SMD2224Q;
MERGE H1(IN=A) H2(IN=B);
BY CLAIM_NUMBER;
IF A AND B THEN DELETE;
RUN;
1 REPLY 1
Paige
Quartz | Level 8
It is deleting any record where the claim number exists in both data sets. (Or, it is keeping records for which the claim number exists in one, but not both, data sets)

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

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 1 reply
  • 828 views
  • 0 likes
  • 2 in conversation