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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Bold in formula 1

Status
Not open for further replies.

ter79

IS-IT--Management
Jul 11, 2001
106
0
0
US
I have the following formula:

Code:
stringvar vRENumber := {Rpt_Smaple.RENumber};

If IsNull({Rpt_Sample.StreetDirection}) Then
    LTRIM(RTRIM(ToText({Rpt_Sample.StreetNumber},0,'') + ' ' + {Rpt_Sample.StreetName}+ ' ' + {Rpt_Sample.StreetType})) 
    + Chr(9) + CHR(9) +'RENumber: '+ vRENumber
Else
    LTRIM(RTRIM(ToText({Rpt_Sample.StreetNumber},0,'') + ' ' + {Rpt_Sample.StreetDirection} + ' ' + 
    {Rpt_Sample.StreetName}+ ' ' + {Rpt_Sample.StreetType}))+ Chr(9) + CHR(9)+ 'RENumber: '+ vRENumber
I need to be able to bold the following word only "RENumber", how can I do this... I have looked at some other the posts but can get it to work...

All help is appreciated.
 
Forgot state that I'm using CR 9
 
Thanks that helped but now it's removing the tab spacing that put in the formula
 
You will need to use the   character for spaces to be recognized by HTML.
This will add 4 spaces after bold "REnumber"

"<b>RENumber</b>&nbsp;&nbsp;&nbsp;&nbsp;"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top