Is it possible to change the character for a missing value? I am outputting a table of data with PROC REPORT, and my columns are numeric. When the report is generated and there is a missing value, it displays a ".", which I don't want. Is it possible to get SAS to display an empty cell without converting everything to character variables?
Try this:
options missing=' ';
Then run PROC REPORT.
I figured there would be a simple fix; I just wasn't sure where it was. Thanks!
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.