Forum Discussion
Anti Filtering
- Anonymous9 years ago
Hi megskilton
Change the following
5. Create a measure called SelectedBrand = Values(BrandSelect[Brand])
as
SelectedBrand = If(HASONEFILTER((BrandSelect[Brand])), Values(Brand[Select]), Blank())
6. Create a measure called ShowYes
ShowYes = IF(Values(yourfacttable[Brand])=[SelectedBrand],"No","Yes")
as
ShowYes = IF(HASONEFILTER((BrandSelect[Brand])),
IF(Values(yourfacttable[Brand])=[SelectedBrand],"No","Yes"),"Yes")Try it out and let me know if you run into issues.
Cheers
CheenuSing
Hi megskilton,
There are duplicate Brand value in selectBrand or facttable, right? Could you please share the sample data or screenshot for further analysis?
Best Regards,
Angelia
Hi v-huizhn-msft,
No duplicates,
The data is business types, and there are 12 unique entrys in the data of 'SelectBrand' and also 12 entrys in fact
Thanks