BookmarkSubscribeRSS Feed
ciro
Quartz | Level 8

Hi,

I would like to identify the records that in proc compare output dataset have equal values in some numeric variables.

the problem is that numeric variables with equal values are marked as E. I don't know how to refer to this value. I have tried with varx=0 or varx=E or varx='E' or -0.1 le varx le 0.1 but none seems to work.

any suggestion is greatly appreciated

thank you in advance

 

 

 

 

 

 

 

3 REPLIES 3
ChrisNZ
Tourmaline | Level 20

Maybe they are missing values.

Try   VARX = .E

JonathanWill
Obsidian | Level 7

You've not an example of your code, but assuming you're looking at the diff output dataset from proc compare, it uses the missing value .E for equal.

 

So you can do something like 

data thesame;
  set comparison(where=(fieldtocheck=.E));
run;

Sometimes forget that SAS has many different missing values (. .A -- .Z ._ , possibly others) and occasionally they are used to represent specific things.  

 

 

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 3 replies
  • 612 views
  • 1 like
  • 4 in conversation