Feb 8, 2001 #1 savok Technical User Jan 11, 2001 303 AT Ok i use a special field record number to get a grand total but if nothing is selected it still shows up as 1 and not 0. What can i do to change that?
Ok i use a special field record number to get a grand total but if nothing is selected it still shows up as 1 and not 0. What can i do to change that?
Feb 8, 2001 #2 MalcolmW Programmer Aug 12, 1999 1,115 CA You are summing the record number? Malcolm Upvote 0 Downvote
Feb 8, 2001 1 #3 kenhamady Instructor Sep 10, 2000 8,794 US This is a 'feature' of the way they increments the recordnumber in CR. Instead create a formula field that says: if IsNull({AnyField}) then 0 else Recordnumber Use this in place of the recordnumber in your report. Ken Hamady http://www.kenhamady.com/Crystal Reports Training and a Quick Reference Guide to VB/Crystal Upvote 0 Downvote
This is a 'feature' of the way they increments the recordnumber in CR. Instead create a formula field that says: if IsNull({AnyField}) then 0 else Recordnumber Use this in place of the recordnumber in your report. Ken Hamady http://www.kenhamady.com/Crystal Reports Training and a Quick Reference Guide to VB/Crystal
Feb 9, 2001 Thread starter #4 savok Technical User Jan 11, 2001 303 AT That did the trick, thanks a lot Upvote 0 Downvote