May 14, 2001 #1 allyne MIS Feb 9, 2001 410 US Is there a way to bold a field value only when the field value is > 2.0? Thanks For your help Cathy
May 14, 2001 #2 kenhamady Instructor Sep 10, 2000 8,794 US what version of CR? Ken Hamady http://www.kenhamady.com/Crystal Reports Training/Consulting and a Quick Reference Guide to VB/Crystal (including ADO) Upvote 0 Downvote
what version of CR? Ken Hamady http://www.kenhamady.com/Crystal Reports Training/Consulting and a Quick Reference Guide to VB/Crystal (including ADO)
May 14, 2001 #4 jazerr Programmer Dec 13, 2000 152 US Under 'Format Field' click the little formula button. For the conditional formula type: if {table.field} > 2.0 then bold else regular Upvote 0 Downvote
Under 'Format Field' click the little formula button. For the conditional formula type: if {table.field} > 2.0 then bold else regular
May 14, 2001 #5 kenhamady Instructor Sep 10, 2000 8,794 US There is no conditional formulas for Font, Size and Style in V7, that was added with V8. You have to drop back to the kludge technique. Create 2 copies of the field, one in each style (Bold/Regular), and put them on top of each other. Suppress the Bold one with: {field} <=2 Suppress the regular one with: {field} >2 Ken Hamady http://www.kenhamady.com/Crystal Reports Training/Consulting and a Quick Reference Guide to VB/Crystal (including ADO) Upvote 0 Downvote
There is no conditional formulas for Font, Size and Style in V7, that was added with V8. You have to drop back to the kludge technique. Create 2 copies of the field, one in each style (Bold/Regular), and put them on top of each other. Suppress the Bold one with: {field} <=2 Suppress the regular one with: {field} >2 Ken Hamady http://www.kenhamady.com/Crystal Reports Training/Consulting and a Quick Reference Guide to VB/Crystal (including ADO)
May 15, 2001 Thread starter #6 allyne MIS Feb 9, 2001 410 US Thanks! It worked! Cathy Upvote 0 Downvote