BookmarkSubscribeRSS Feed
zqkal
Obsidian | Level 7

Before I get to my question let me explain a few things .

I’m creating a report that will  show differences between two SAS datasets.  These two SAS datasets have 14 million observations and 390 variables.

I used PROC compare to create the a list file with all the differences between each observations and then  output the list file into SAS dataset.

Ods listing close;

Ods ouput CompareSummary=compare_summary;

Proc compare base=first_dataset compare=second_dataset

       Maxprint(100,5000) novalues listequalvar;

Id key;

Run;

Ods output close;

Ods listing;

 

Does anyone knows why SAS takeout the space between len2 and Ndif?

Does anyone know how I could output part of the list file “variables with Unequal Values”  into 4 column?

Thanks in advance.

1 REPLY 1
ballardw
Super User

You don't show anything related to len2 or Ndif so can't say anything about spaces.

I think you might be well off to examine the output data set options that proc compare will generate such as :

out=outputsetname outnoequal outdif

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

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 2857 views
  • 3 likes
  • 2 in conversation