Forum Discussion
Show as blank based on selection
- 6 years ago
I managed to find the solution to hide based on 2 slicers, it is now showing blanks if I select either one or both choices.
Target = IF(ISFILTERED ('Table'[Col]), IF(SELECTEDVALUE('Table'[Col])="Sell", IF(ISFILTERED ('Table'[Col]), IF(SELECTEDVALUE('Table'[Col])="{CountryA, Country B}", CALCULATE([Target],USERELATIONSHIP('Table1'[Col],'Table2'[Col])), BLANK()))
Update 1:
I managed to get the target to not show for the first selection of buy/sell, however I am unable to get the target to hide for the country selection.
Below is my DAX, how should I edit it to allow 2 selections? From two different tables
Target = IF(ISFILTERED ('Table'[Col]),
IF(SELECTEDVALUE('Table'[Col])="Sell",
CALCULATE([Target],USERELATIONSHIP('Table1'[Col],'Table2'[Col])),
BLANK()))Note: All data is edited and I am unable to share my PBIX file, as my data is confidential. However, I will still try to provide as much information possible.
naoki ,
Have you dragged some to target field? If you have, the target value will be shown in the Gauge chart and can't be controlled by slicer.
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- naoki6 years agoHelper I
I managed to find the solution to hide based on 2 slicers, it is now showing blanks if I select either one or both choices.
Target = IF(ISFILTERED ('Table'[Col]), IF(SELECTEDVALUE('Table'[Col])="Sell", IF(ISFILTERED ('Table'[Col]), IF(SELECTEDVALUE('Table'[Col])="{CountryA, Country B}", CALCULATE([Target],USERELATIONSHIP('Table1'[Col],'Table2'[Col])), BLANK()))