Hi,
I ran proc report and apparently it does not like when a value for character value has the symbol "<". The value is <0.0001.
Thanks for responding. I realized that I just had to change off to on in protectspecialchars=on. This solved the problem!
The code for proc report is
proc report data = dsout nowd missing split = '~' spacing=2 style(column)=[protectspecialchars=on asis=on];
column var estimate pvalue;
define ....;
run;
Hi,
Can you post the sas code you ran as well?
Depending on assigned formats values may get displayed differently. For example, <0.0001 seems like a p-value. If so, then specifying pvalue6.4 format in define statement should resolve the issue.
define varname/........format=pvalue6.4;
Thanks for responding. I realized that I just had to change off to on in protectspecialchars=on. This solved the problem!
The code for proc report is
proc report data = dsout nowd missing split = '~' spacing=2 style(column)=[protectspecialchars=on asis=on];
column var estimate pvalue;
define ....;
run;
ok
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.