In my Crystal Reports I have a field called "PAYMENT", it has to be displayed according to the following requirement.
PAYMENT=percentage
PAYMENT=percentage+(percentage(total value)+remarks)
Can anyone please tell me how to do this?
You can use the following formula in CR to count the records
CountRecords
Count ({Table.PAYMENT})
PaymentDisplay
Then create another formula with your decision making:
If COUNT FORMULA = 1 then DISPLAY OPTION 1 else DISPLAY OPTION 2
I have not tested this but it should work.