This is not a very smart workaround for your requirement. Just try to add a new column to mask the rows that need to show.
=If Count([Status]) In ([Data]) = 2 And [Status] = "Delayed" And [Time]=Max([Time]) Where([Status] = "Delayed") Then 1 ElseIf Count([Status]) In ([Data]) = 1 And [Time]=Max([Time]) In Report Then 1 Else 0
Add comment