Solved Filter report based on Group value (1 Viewer)

mfaisal.ce

Member
Local time
Today, 19:50
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,
 

plog

Banishment Pending
Local time
Today, 11:50
Joined
May 11, 2011
Messages
11,653
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:

 

arnelgp

..forever waiting... waiting for jellybean!
Local time
, 00:50
Joined
May 7, 2009
Messages
19,247
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

Top Bottom