Hello,
I have to compare 2 large datasets using proc compare with printing the results. I used the code below
Proc compare base=tab1 comp=tab2 ; id anonymat gender; run;
But I have this warning message for all the variables not in ID statement
Note: The MAXPRINT=50 printing limit has been reached for the variable birthdate. No more values will be printed for this comparison
How to solve it?
Thanks
The NOTE is telling you want to do.
Add the MAXPRINT= option to the PROC COMPARE statement.
How many differences does your COMPARE difference summary report? You can use the MAXPRINT option to print more differences but beyond a few hundred the output gets too large an other techniques become more useful.
You may need to sort by more variables than the ID variables if there multiple values of the ID var combinations.
The NOTE is telling you want to do.
Add the MAXPRINT= option to the PROC COMPARE statement.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.
Ready to level-up your skills? Choose your own adventure.