In a Crystal Report, I am using a group in order to report data on one line per item. In doing so, I am using sums of numeric fields on the group footer (the detail section is not being used in this report). How can the sum of a numeric field be represented when using the RecordSelectionFormula in VB. I am trying to allow a user to chose data where the sum of the paid amounts for any claim is above an entered value.
An example of what I'm attemping right now is
ReportSelectionFormula = "Sum Of {table.field} >= " & Amt & ""
I wasn't suprised to see that this did not work. Is what I'm trying to do possible?
An example of what I'm attemping right now is
ReportSelectionFormula = "Sum Of {table.field} >= " & Amt & ""
I wasn't suprised to see that this did not work. Is what I'm trying to do possible?