Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
I have 5 Slicers and They are A, B, C, D, & E. I want to Filter Matrics Based on the combination of AND & OR logic between Slicers. Something Like below.
Matrics should be Filtered by = ( A & B ) || ( C & D ) || E
Example = ( A AND B ) OR ( C AND D ) OR E
Can Someone Share with me a prototype build on DAX? Using Connected or Disconnected Table/Slicers will work.
Solved! Go to Solution.
@Rasidul_Hasan That would be something below. Hard to be specific without sample data, etc. Basically an implementation of a Complex Selector. The Complex Selector - Microsoft Power BI Community
Measure =
VAR __A = SELECTEDVALUE('SlicerTableA'[A])
VAR __B = SELECTEDVALUE('SlicerTableB'[B])
VAR __C = SELECTEDVALUE('SlicerTableC'[C])
VAR __D = SELECTEDVALUE('SlicerTableD'[D])
VAR __E = SELECTEDVALUE('SlicerTableE'[E])
VAR __A1 = MAX('Table'[A])
VAR __B1 = MAX('Table'[B])
VAR __C1 = MAX('Table'[C])
VAR __D1 = MAX('Table'[D])
VAR __E1 = MAX('Table'[E])
RETURN
SWITCH(TRUE(),
( __A = __A1 && __B = __B1 ) || ( __C = __C1 && __D = __D1) || __E = __E1,1,
0
)
Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
Great. 😊
@Rasidul_Hasan That would be something below. Hard to be specific without sample data, etc. Basically an implementation of a Complex Selector. The Complex Selector - Microsoft Power BI Community
Measure =
VAR __A = SELECTEDVALUE('SlicerTableA'[A])
VAR __B = SELECTEDVALUE('SlicerTableB'[B])
VAR __C = SELECTEDVALUE('SlicerTableC'[C])
VAR __D = SELECTEDVALUE('SlicerTableD'[D])
VAR __E = SELECTEDVALUE('SlicerTableE'[E])
VAR __A1 = MAX('Table'[A])
VAR __B1 = MAX('Table'[B])
VAR __C1 = MAX('Table'[C])
VAR __D1 = MAX('Table'[D])
VAR __E1 = MAX('Table'[E])
RETURN
SWITCH(TRUE(),
( __A = __A1 && __B = __B1 ) || ( __C = __C1 && __D = __D1) || __E = __E1,1,
0
)
Hi @Greg_Deckler , Is this solution for the Connected model With Slicers or Discounted Model with Slicers?
Fantastic.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
23 | |
21 | |
20 | |
13 | |
12 |
User | Count |
---|---|
41 | |
32 | |
23 | |
23 | |
22 |