BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
Tecla1
Quartz | Level 8

Hello everyone,

is it possible to avoid exporting the "dot" in empty numeric cells to excell?

Thank you very much,

Tecla

1 ACCEPTED SOLUTION

Accepted Solutions
PeterClemmensen
Tourmaline | Level 20

Try using

 

options missing="";

 

before the Proc Print 

View solution in original post

4 REPLIES 4
PeterClemmensen
Tourmaline | Level 20

How do you export to Excel?

Tecla1
Quartz | Level 8

Hi, Tnks, 

 

ods excel file="&outputname."
options(autofilter="1-6" sheet_name="&sheetname.");

proc print data=&libname..&dataname. label;
run;

ods excel close;

PeterClemmensen
Tourmaline | Level 20

Try using

 

options missing="";

 

before the Proc Print 

Tecla1
Quartz | Level 8
Thank you very much Peter!! The whole community is always very helpful and kind... I wish everyone a very happy new year!!

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
  • 4 replies
  • 1177 views
  • 1 like
  • 2 in conversation