Forum Discussion
Parsing filter methods
- Anonymous4 years ago
Hi Anonymous ,
I suggest you to try to create a measure to filter your visual. I think there should be no relationship between Table1[Col1] and Table2[Col1].
Measure = VAR _MAX_COL1_TABLE1 = MAX(Table1[Col1]) RETURN IF(SUM(Table2[Col1])<_MAX_COL1_TABLE1,1,0)Add this measure into the visual level filter and set it to show items when value =1.
Result is as below.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Anonymous ,
I suggest you to try to create a measure to filter your visual. I think there should be no relationship between Table1[Col1] and Table2[Col1].
Measure =
VAR _MAX_COL1_TABLE1 = MAX(Table1[Col1])
RETURN
IF(SUM(Table2[Col1])<_MAX_COL1_TABLE1,1,0)
Add this measure into the visual level filter and set it to show items when value =1.
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.