The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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
User | Count |
---|---|
61 | |
55 | |
53 | |
49 | |
30 |
User | Count |
---|---|
179 | |
87 | |
70 | |
48 | |
45 |