BookmarkSubscribeRSS Feed
Quentin
Super User

Hi All,

Wondering what "best practice" is for generating a paragraph or two of text using ODS HTML.

So say you have a report, and want introductory text.

Do people use ODS TEXT= to write a paragraph (or more?)

Do people write the text to a dataset and then use PROC REPORT to print it?

I haven't had much need in the past to use SAS to write a paragraph.  But in this case I'm sending an email (html) with a table, and want to add enough text to the beginning that folks will understand what they are getting.

Thanks,

--Q.

BASUG is hosting free webinars Next up: Mike Sale presenting Data Warehousing with SAS April 10 at noon ET. Register now at the Boston Area SAS Users Group event page: https://www.basug.org/events.
2 REPLIES 2
KarlK
Fluorite | Level 6

Q,


I do a lot of text reports and rarely use ODS TEXT=. Just from my experiene, you get more reliability and consistency from your PROC REPORT solution. For starters, I use something like:

proc report data=whatever nowindows noheader

style(report) = [rules=none frame=void cellspacing=0]

;

Then, all the usual style elements you might need like margins, indentation, alignment, etc. all work as expected in REPORT to fancy things up a little.

If it helps, I did a poster on some of this stuff a while back:

http://www.nesug.org/Proceedings/nesug10/po/po14.pdf

Karl

Quentin
Super User

Thanks for your thoughts Karl, and the link to your paper.  Nify approach to creating bulleted text.

--Q.

BASUG is hosting free webinars Next up: Mike Sale presenting Data Warehousing with SAS April 10 at noon ET. Register now at the Boston Area SAS Users Group event page: https://www.basug.org/events.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 1460 views
  • 3 likes
  • 2 in conversation