Forum Discussion
Created two slicers using three column values
- 3 years ago
Due to Data integrity, i am providing the result with sample values as mentioned in my post.
Code sample here:
Slicer1 =
IF(CONTAINSSTRING(Table1[columnxyz],"ABC")
|| CONTAINSSTRING(Table1[columnxyz],"DEF"),"Super",
IF(CONTAINSSTRING(Table1[columnxyz],"12AA"),"Big",
IF(CONTAINSSTRING(Table1[columnxyz],"34BB"),"Work","")))Slicer2 =
Switch(True(),
CONTAINSSTRING(Table1[columnxyz],"ABC")
|| CONTAINSSTRING(Table1[columnxyz],"DEF"),Table1[ColumnB],
CONTAINSSTRING(Table1[columnxyz],"12AA"),Table1[ColumnB],
CONTAINSSTRING(Table1[columnxyz],"34BB"),Table1[ColumnC])
these are three column in one table or different table.
Same Table
- Mahesh00163 years agoSuper User
Hello SantoshKumar ,
in this table you more data also or ....
- SantoshKumar3 years agoMicrosoft Employee
Mahesh0016 Yes, I have around 15-20 columns in that table along with these three columns in that table.