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.

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

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
  • 1605 views
  • 0 likes
  • 3 in conversation