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
Hi,
I have 3 different status from the table and I want a slicer from all the columns.
"Avaliable_Status" , "Active_Status" and "Not Active_Status".
Here is the sample data.
Solved! Go to Solution.
Hi @Anonymous ,
The formula is to create a slicer table.
If you want the slicer to filter the visual, you will need to create a measure as below.
IF(SELECTEDVALUE('TABLE'[PCI])=SELECTEDVALUE('SLICER'[COLUMN])||SELECTEDVALUE('TABLE'[SOC])=SELECTEDVALUE('SLICER'[COLUMN])||SELECTEDVALUE('TABLE'[SOC FC])=SELECTEDVALUE('SLICER'[COLUMN]),1,0)
Then put this measure to visual level filter measure = 1.
Best Regards,
Jay
Hi @Anonymous ,
Check the formula.
Table 2 = DISTINCT(UNION(SELECTCOLUMNS('Table',"slicer",'Table'[column1]),SELECTCOLUMNS('Table',"slicer",'Table'[column2]),SELECTCOLUMNS('Table',"slicer",'Table'[column3])))
Best Regards,
Jay
@Anonymous ,
I tried the same way but this is not working .
Hi @Anonymous ,
The formula is to create a slicer table.
If you want the slicer to filter the visual, you will need to create a measure as below.
IF(SELECTEDVALUE('TABLE'[PCI])=SELECTEDVALUE('SLICER'[COLUMN])||SELECTEDVALUE('TABLE'[SOC])=SELECTEDVALUE('SLICER'[COLUMN])||SELECTEDVALUE('TABLE'[SOC FC])=SELECTEDVALUE('SLICER'[COLUMN]),1,0)
Then put this measure to visual level filter measure = 1.
Best Regards,
Jay
@Anonymous , You can create a new table like
distinct(union(distinct(Table[Avaliable_Status]) ,distinct(Table[Active_Status]), .distinct(Table[Not Active_Status])))
Join with all three columns and create measure using use relationship
Another option is unpivot table
I have created a seperate table for distinct values.
When I am trying to establish the relaptionship I am getting error.
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.