when i am giving ODS report using PROC REPORT ,It produces a table format output in pdf .
but i don't want table format,i want the report as it produced in output window.....please give me the suggestions..
Your post says very little. I assume by output window you mean the plain text output window? PDF destination (as with all more advanced destinations) use styles to control how the output looks in the final destination. You alter or supply a different style to get the output to look like. For instance try:
ods pdf file="a.pdf" style=normal; proc report... ods pdf file="b.pdf" style=statistical; proc report...
And you will notice the two diffrerent pdf files look quite different.Providing more information always helps get a clearer picture.
Please supply example data and your report code (see my footnote)
Catch the best of SAS Innovate 2025 — anytime, anywhere. Stream powerful keynotes, real-world demos, and game-changing insights from the world’s leading data and AI minds.
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.