I have a source table with data like:
| ID |
Status |
| 1 |
TRUE |
| 2 |
FALSE |
| 3 |
TRUE |
| 3 |
FALSE |
I have then done a Group By on ID keeping All Rows.
My goal is to then filter the groups to only those where both TRUE and FALSE Status rows exist.
Is this possible?
I don't have much experience with power query at all so I'm a little lost on how to approach.
First attempt was to use something like Table.SelectRows(#'Grouped', each [Status] = 'FALSE'... but this format doesn't work.
---------- Update
Current approach is trying something like:
= Table.SelectRows(#'Grouped Rows', each SomeKindOfAndIDontKnowYet(Table.MatchesAnyRows([allRows], each([Status]="TRUE")), Table.MatchesAnyRows([allRows], each([Status]="FALSE")))
So that it's like select from the grouped table, each row that contains a table that contains any row of both TRUE and FALSE...