Hi SAS Users,
I am converting SAS dataset to excel and I am using following code. but the issue is in excel the width is eneven (kindly see the screenshot which attached). kindly let me know where I need to update the code.
Note: I am using SAS EG 7.1 (64-bit).
ods listing close;
ods tagsets.excelxp
file="&XLS"
STYLE=sas_xls
OPTIONS (Orientation = 'landscape'
embedded_titles = 'yes'
row_repeat='header'
FitToPage = 'Yes'
Pages_FitWidth = '1'
Pages_FitLength = '100'
sheet_interval='none'
sheet_name="&CK"
autofilter = 'all');
%let trans=;
I guess your complaint is not about width, but height of cells.
Since this is basically free-form text, look for hidden linefeeds.
(convert the strings in the dataset to hexadecimal representation using the $HEXw. format to show special characters)
Hi,
There isn't enough information there, that is just the file open command. What is your proc report doing? What should the output look like? What is this sas_xls style?
Tagsets has a auto row height option as well as a skip space option.
Have you tried those?
its unlikely but verify your running the latest tagsets version.
The version is posted in your log after the ods statement and the latest version is on the download page.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.