hi
When I'm generating a ODS RTF file, Im getting my footer in next page. But I still have some empty space in first page above title.
I have tried PS options, but its not working. When I use PS = 40 or PS = 80, RTF output remains same
How to increase my number of Lines than can be there in a RTF page ?
options orientation=landscape nodate PS=65 ls=120 nocenter nonumber nobyline topmargin=1.5in bottommargin=1in leftmargin=1in rightmargin=1in;
1) you should show the actual settings you use including the ODS rtf statement with all options
2) I don't believe Pagesize has anything to do with any ODS destination. You might try using Papersize.
Also I think you may want to set the options prior to the ODS RTF and don't attempt to change the page size or orientation within the ODS RTF / ODS RTF Close code block.
Make the page larger or make the font smaller (actually really the space between lines, but you don't want the lines so close together that the characters are printed on top of each other).
OPTIONS Papersize = (8in 15in);
before the ODS RTF statement will set the papersize default to 8 inches wide by 15 inches long.
Or use other measurement unit like CM if that is better for you.
You can also use some paper size names like 'Letter' or 'A4'. Current list depends on your install and likely LOCALE setting. I tend to just specify the measurements.
Papersize will override the Orientation option.
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.