Hi,
I have a requirement to self filter dataverse table and pull the Assigned rows which does not have associated Submitted rows present in same dataverse table. Below is sort of what I want however this clearly does not work and I am here seeking for possible solution ? Similar to SQL Subquery
SQL
Select * from [dbo].[stages] where stagename = 'Assigned' and uniqueid not in (
Select distinct uniqueid
from [dbo].[stages] where stagename = 'Submitted'
)
POWER FX Desired but does NOT work
Filter(
Stages,
stage = 'Stage (Stages)'.Assigned &&
!(UniqueID in ShowColumns(
Filter(
Stages,
stage = 'Stage (Stages)'.Submitted
),
UniqueID
))
)