Results 1 to 3 of 3

Thread: [RESOLVED] How do I Sum Blank Value

  1. #1

    Thread Starter
    Addicted Member girl81's Avatar
    Join Date
    Apr 2006
    Location
    Malaysia
    Posts
    211

    Resolved [RESOLVED] How do I Sum Blank Value

    Hi all I have one question here...Can someone please guide me how to make this formula.Im using CR 8.5

    Volume Invoice No
    18.00 / N-017
    4.00 / N-017
    2.00
    4.00
    Total =28

    How do i Sum Volume for Blank Invoice Number..So Sum Blank Value is 6

    Thanks in Advance
    Last edited by girl81; Aug 13th, 2006 at 11:26 AM.

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

    Re: How do I Sum Blank Value

    Create a formula that returns the volume if the invoice is blank, 0 otherwise. This is Crystal syntax.

    Code:
    If {Invoice Field} = "" Then //may need to use IsNull depending on the data
       {Volume Field}
    Else 
       0
    You can then use the typical Summary operations on the formula or create another formula with

    Sum ({Formula Name},{Group Name})

  3. #3

    Thread Starter
    Addicted Member girl81's Avatar
    Join Date
    Apr 2006
    Location
    Malaysia
    Posts
    211

    Re: How do I Sum Blank Value

    Quote Originally Posted by brucevde
    Create a formula that returns the volume if the invoice is blank, 0 otherwise. This is Crystal syntax.

    Code:
    If {Invoice Field} = "" Then //may need to use IsNull depending on the data
       {Volume Field}
    Else 
       0
    You can then use the typical Summary operations on the formula or create another formula with

    Sum ({Formula Name},{Group Name})
    Thanks and thanks again Brucevde..It works fine...Thanks a lot

    You're always great.im very appreciated it.
    Last edited by girl81; Aug 13th, 2006 at 12:37 PM.

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