Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi All,
Solved! Go to Solution.
Hi, @mahirk81
You may create a table like below.
New:
Then you may modify the measure as below.
Visual control =
IF(
SELECTEDVALUE(New[IsDisplay])="Yes",
1,
IF(
SELECTEDVALUE(New[IsDisplay])="No",
0
)
)
Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @mahirk81
You may create a table like below.
New:
Then you may modify the measure as below.
Visual control =
IF(
SELECTEDVALUE(New[IsDisplay])="Yes",
1,
IF(
SELECTEDVALUE(New[IsDisplay])="No",
0
)
)
Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @mahirk81
Based on your description, I created data to reproduce your scenario.
Table:
Test(a calculated table):
Test = DISTINCT('Table'[ID])
You need to set data category for 'Image url' as Image URL.
Then you may create a measure as beolw.
Visual control =
IF(
ISFILTERED('Test'[ID]),
IF(
SELECTEDVALUE('Table'[ID]) in FILTERS('Test'[ID]),
1,0
),
0
)
Finally you may put the measure in the visual level filter and use the 'ID' column from 'Test' to filter the result.
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Very good solution, however the image does not appear, I get this, what can it be due to?
@mahirk81 , bookmark should help
https://radacad.com/bookmarks-and-buttons-making-power-bi-charts-even-more-interactive