Results 1 to 3 of 3

Thread: [RESOLVED] Bold

  1. #1

    Thread Starter
    Frenzied Member EyeTalion's Avatar
    Join Date
    Jul 2000
    Location
    New York
    Posts
    1,075

    Resolved [RESOLVED] Bold

    I'm using a formula to convert some data for one of my fields.

    Code:
    If {BILLING_PERIOD.STATUS_IND} = '0' Then "NOT USED"
    Else If{BILLING_PERIOD.STATUS_IND} = '2' Then "UNRECONCILED"
    Else If {BILLING_PERIOD.STATUS_IND} = '5' Then "RECONCILED"
    Else If {BILLING_PERIOD.STATUS_IND} = '6' Then "CLOSED"
    If the status indicator is 2 I want only that field to be bold. Any suggestions?
    Last edited by EyeTalion; Jan 17th, 2007 at 03:13 PM. Reason: Resolved
    It's tough being an unhandled exception...

    ___________
    VB.NET 2008
    VB.NET 2010
    ORACLE 11g
    CRYSTAL 11

  2. #2
    PowerPoster
    Join Date
    Oct 2002
    Location
    British Columbia
    Posts
    9,758

    Re: Bold

    Use this in the Style formula of the report object that you want to bold

    Code:
    If {BILLING_PERIOD.STATUS_IND} = '2' Then
       crBold
    Else
      crRegular

  3. #3

    Thread Starter
    Frenzied Member EyeTalion's Avatar
    Join Date
    Jul 2000
    Location
    New York
    Posts
    1,075

    Re: Bold

    that did it...thanks
    It's tough being an unhandled exception...

    ___________
    VB.NET 2008
    VB.NET 2010
    ORACLE 11g
    CRYSTAL 11

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width