BookmarkSubscribeRSS Feed
2 REPLIES 2
Kurt_Bremser
Super User

missover sets a variable where not enough data is present to missing, while truncover reads what's available:

data _null_;
file '$HOME/test.txt';
input testvar $10.;
put testvar;
cards;
1234567890
1234
;
run;

data test1;
infile '$HOME/test.txt' missover;
input testvar $10.;
run;

data test2;
infile '$HOME/test.txt' truncover;
input testvar $10.;
run;

In test1, testvar will be empty for the second observation, while in test2, it gets the "1234".

 

truncover is newer and preferred.

RW9
Diamond | Level 26 RW9
Diamond | Level 26

There are papers on this:

https://support.sas.com/resources/papers/proceedings/proceedings/sugi26/p009-26.pdf

 

Other people have asked the same question:

https://communities.sas.com/t5/SAS-Programming/What-is-the-difference-between-Missover-and-Truncover...

 

Plus plenty of other material on a quick Google search which should answer this question.

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
  • 2 replies
  • 1532 views
  • 0 likes
  • 3 in conversation