Forum Discussion
Anonymous
6 years agoNot applicable
Showing group status
Hi,
I have some data that has a group name column, an individual name column and a status column (1 for active, 2 for inactive).
Is there a way to show the entire group as inactive if atleast one item is inactive?
Any help would be greatly appreciated.
Anonymous Please try adding a NewStatus field as below
NewStatus = VAR _Status = MAXX(FILTER(Test09,Test09[Group]=EARLIER(Test09[Group])),Test09[Status]) RETURN _Status
1 Reply
- PattemManohar
Community Champion
Anonymous Please try adding a NewStatus field as below
NewStatus = VAR _Status = MAXX(FILTER(Test09,Test09[Group]=EARLIER(Test09[Group])),Test09[Status]) RETURN _Status