BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
maroulator
Obsidian | Level 7

I have the following data.

Name     Age      Title

Tom         .       Analyst

Mike         .       VicePresident

John        .        AccountManager

....and I need it to look like this.

Name     Age      Title

Tom                   Analyst

Mike                   VicePresident

John                   AccountManager

By design, the variable Age is numeric and only holds blanks. I need to eliminate the dots associated with numeric blanks, such that the Age variable is completely clear (ie. the Age variable blanks need to look like numeric blanks). The only way I know to do this, however, is to introduce a new variable that contains Age's values and recast the new variable as a character and set it to blank with an if statement. It is imperative, however, that I keep Age variable in the same location within the dataset (ie between the Name and Title variables), so I am not able to get there with what I know.

Any suggestions?

1 ACCEPTED SOLUTION

Accepted Solutions
2 REPLIES 2
Haikuo
Onyx | Level 15

options missing='';

ballardw
Super User

The . for missing is a system option. Inside a dataset I wouldn't worry about it. For any report procedure or data export before the procedure use:

options missing=' '; to have a single space instead of the period appear. Reset to default afterwards using option missing='.';

If you are really worried about the appearance within a data set then use the same option missing=' ';

SAS Innovate 2025: Register Now

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!

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