Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
We have a fact Table Transaction which has keys from various Dimensions
| FactTransactionKey | DimProductID | DimAreaID | DimProgramID | Amount |
| 1 | 1 | 1 | 1 | 10 |
| 2 | 1 | 2 | 2 | 20 |
| 3 | 2 | 3 | 3 | 30 |
Now In DIMProgram table we have
| DimProgramID | PrgramName |
| 1 | AA |
| 2 | AB |
| 3 | AZ |
| 4 | AS |
Similarly we have DimArea And DimProduct table
Now i want a slicer which is Multiselect but its values are
| Select ALL |
| Program |
| Area |
| Product |
| None |
now if user select any items from Slicer Fact table should be filtered.
and we have rule like
User selected Program and Area,
So we need to filter table based on Program and Area where Program name in ('AA','Ab') and AreaCode in ('aa',bb')
and if user select none
then
we need to filter table based on Program and Area where Program name in ('AZ','AS') and AreaCode in ('cc',dd')
NOt sure but below works without IF
But IF is added it failes at bold giving error that ( function expect a table expression for argument ", but a string or numeric is passed), 😞
Thanks for the response but In my slicer , user can select MUltiple values.
And also I am struck as I am trying to use below , but doesnt work
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.