BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.

It looks like when PROC REPORT wraps a long text value, it will split values based on some word boundaries, e.g. "." and " ".

 

So:

 

data have ; 
  txt="AAAAAAAAAAAAA.BBBBBBBBBBBBB CCCCCCCCCCCCC"  ;
run ;

ods pdf file="%sysfunc(pathname(work))/mypdf.pdf" ;
proc report data=have ;
  columns txt ;
  define txt /style(column)=[cellwidth=2in];
run ;
ods pdf close ;

Splits the text into 3 lines when it wraps, and gives me a PDF that looks like:

mypdf.png

Is there an option where I can tell PROC REPORT not to split the value on any boundaries when it wraps?  Perhaps a style option for a particular column that says something like IgnoreWordBoundaries?

 

Basically I want to save vertical space by allowing text to wrap in the middle of a "word".  If the above example wasn't split on word boundaries, it would be two rows instead of 3.

The Boston Area SAS Users Group is hosting free webinars!
Next webinar will be in January 2025. Until then, check out our archives: https://www.basug.org/videos. And be sure to subscribe to our our email list.
1 ACCEPTED SOLUTION

Accepted Solutions
Cynthia_sas
SAS Super FREQ
Hi:
There's no option like that that I know of except for fiddling with the width or explicitly using ODS ESCAPECHAR and {newline} to explicitly put your own linebreaks into the string.
Cynthia

View solution in original post

2 REPLIES 2
Cynthia_sas
SAS Super FREQ
Hi:
There's no option like that that I know of except for fiddling with the width or explicitly using ODS ESCAPECHAR and {newline} to explicitly put your own linebreaks into the string.
Cynthia
Quentin
Super User

Thanks @Cynthia_sas.  If you don't know of it, then I'm sure it's not there.  Maybe I'll put it in as a ballot item.  Of course for real words, breaking on word boundaries makes sense.  But in this case I've got a column that shows the name of a file passed by the user.  And they come up with some really creative long names with spaces and sometimes dots in them, that are wrapping funny. So I'd like to just treat it as a string of characters, rather than a string of words.

The Boston Area SAS Users Group is hosting free webinars!
Next webinar will be in January 2025. Until then, check out our archives: https://www.basug.org/videos. And be sure to subscribe to our our email list.

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 2173 views
  • 0 likes
  • 2 in conversation