Is it possible to group based on a formula using summary columns?
Here is my situation
Group 1 - Zone
Group 2 - Location
Details - suppressed
Group footer 2
Location name total commitments total Loads Status
XXX 23 5 unmet
sss 5 10 Exceeded
aaa 2 2 Met
asd 11 5 unmet
Where status is determined by
if maximum({total commitments},{location}) > sum({total loads}, {location}) then
status = unmet
else if maximum({total commitments},{location}) < sum({total loads}, {location}) then
status = Exceeded
else
status = Met
Is it possible to sort or group the rows by this status column?
Any help would be greatly appreciated.
Here is my situation
Group 1 - Zone
Group 2 - Location
Details - suppressed
Group footer 2
Location name total commitments total Loads Status
XXX 23 5 unmet
sss 5 10 Exceeded
aaa 2 2 Met
asd 11 5 unmet
Where status is determined by
if maximum({total commitments},{location}) > sum({total loads}, {location}) then
status = unmet
else if maximum({total commitments},{location}) < sum({total loads}, {location}) then
status = Exceeded
else
status = Met
Is it possible to sort or group the rows by this status column?
Any help would be greatly appreciated.