Link to home
Start Free TrialLog in
Avatar of Howard Katz
Howard KatzFlag for United States of America

asked on

How do I use crbold in a formula?

Hello Experts,
This should be a simple one.  Here is my formula.  I want the text 'Endorsements located on addendum page' to be bold if @EndNumber > 7.

How do I add the crbold.

IF {@EndNumber}>7 THEN
    chr(13) + chr(9) + 'Endorsements located on addendum page.'
ELSE
 {@Endorsements}

Thanks
Howard
Avatar of analliah
analliah
Flag of United States of America image

right click on the formula, format field,
under font, Color >>> click on the x-2
 if @EndNumber > 7 then
crbold
Avatar of Howard Katz

ASKER

I put (not in color but in stye)

// This conditional formatting formula must return one of the following Font Style Constants:
//
// crRegular
// crBold
// crItalic
// crBoldItalic
//

If @EndNumber > 7 then
crbold

and I got the error

crbold.jpg
see comment above
Sorry, Style is the correct place.
you are formatting this formula correct not the @endnumber

IF {@EndNumber}>7 THEN
    chr(13) + chr(9) + 'Endorsements located on addendum page.'
ELSE
 {@Endorsements}
ASKER CERTIFIED SOLUTION
Avatar of analliah
analliah
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks analliah.  You were right the first time only you didn't have the  curly brackets around the formula name.