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 Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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
  • 940 views
  • 1 like
  • 2 in conversation