Dec 9, 2002 #1 kpiljava Programmer Nov 3, 2002 14 PR A nUmber field is coming from the data base .We need to show it in Bold on the report if the value of that is greater than 2
A nUmber field is coming from the data base .We need to show it in Bold on the report if the value of that is greater than 2
Dec 9, 2002 #2 Naith Programmer May 14, 2002 2,530 GB Depending on your version, you should have a formula button (X+2) next to Style. (Right click field, hit the Font tab). Press the button, and write: Code: If {MyField} > 2 Then crBold Else crRegular Naith Upvote 0 Downvote
Depending on your version, you should have a formula button (X+2) next to Style. (Right click field, hit the Font tab). Press the button, and write: Code: If {MyField} > 2 Then crBold Else crRegular Naith