|
-
Aug 13th, 2006, 10:54 AM
#1
Thread Starter
Addicted Member
[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.
-
Aug 13th, 2006, 12:16 PM
#2
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})
-
Aug 13th, 2006, 12:32 PM
#3
Thread Starter
Addicted Member
Re: How do I Sum Blank Value
 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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|