Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CrBold Part of Text 1

Status
Not open for further replies.

mtownbound

Technical User
Jan 28, 2002
293
US
I need to crbold a part of a formula field:

"From " & {@Date Range} & ", "
& totext({#TotalQuestions},0) & {@Was}
& totext({#TotalEMailQuestions},0) & " in the inbox, "

I need to bold only the {@Date Range}. Any ideas??


Thanks!!
 
If you put all that in a text box, you could apply 'bold' to just one item.

Or keep the formula for everything past {@Date Range} and put that in the text box.

[yinyang] Madawc Williams (East Anglia, UK). Using Crystal 11.5 with SQL and Windows XP [yinyang]
 
Thanks for the reply. Do you mean break up this field into three fields? Can you show me an example of exactly how that would work?
 
You could also use:

"From " & "<b>"&{@Date Range}&"</b>" & ", "
& totext({#TotalQuestions},0) & {@Was}
& totext({#TotalEMailQuestions},0) & " in the inbox, "

...and format the formula to HTML Text interpretation (format field->paragraph->text interpretation).

-LB
 
Thanks lbass!! I tried the HTML earlier, but didn't include the quotes.

Thanks again!!!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top