Solved Filter report based on Group value

mfaisal.ce

Member
Local time
Tomorrow, 01:13
Joined
Dec 21, 2020
Messages
76
Hi every one,

I have a report and i have a field Name "Balance". I want following conditions on group level
1. Balance =0
2. Balance >0
3. Balance <0

How can i do that? Plz guide....

regards,
 
You would create a new field in the reports query and then group on that new field in your report. Your other thread shows you how to do that:

 
On Grouping, select Expression and the Expression is:

Switch([Balance] = 0, 0, [Balance] >0, 1, [Balance] < 0, 2, True, 3)
 

Users who are viewing this thread

Back
Top Bottom