Hello All, I'm using the below program to output to excel. I'm getting a lot of rows that are too high. I suspect this is because SAS is looking at the row that's the highest (there's one that has a lot more text in one column than the others) and setting all row heights to match it. How do I make it so the heights are dynamic for each row? ODS LISTING CLOSE; ods excel file="folder\test.xlsx" style=htmlblue; ods excel options( flow='tables' sheet_name ='test' embedded_titles='yes' sheet_interval="none" orientation='landscape'); Title 'a title'; run; PROC PRINT DATA= test noobs; RUN; ODS _ALL_ CLOSE;
... View more