Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
hi,
I have a measure called "My Measure" and it returns 1 or 0.
ImageAVisibility = IF([My Measure] = 1, 1, 0)
ImageBVisibility = IF([My Measure] = 0, 1, 0)
if my measure returns 1, show the up arrows and hide the down arrow.
if my measure reutnrs 0, show the down arrow and hude the up arrow.
I have trouble implementing this with the arrows from insert->shapes.
How can I do this? I dont a web url or web image.
Solved! Go to Solution.
hello @wonka1234
i am not sure to hide shape but you can do by making the color transparent.
- Measure equal to 0
- Measure equal to 1
if this can accomodate your need, then you can tweak your DAX a little bit.
Measure 2 =
IF(
[Measure]=1,
"#FFFFFF00",
"#FF0000"
)
Measure 3 =
IF(
[Measure]=0,
"#FFFFFF00",
"#FF0000"
)
do exact same method for border
Hope this will help.
Thank you.
hello @wonka1234
i am not sure to hide shape but you can do by making the color transparent.
- Measure equal to 0
- Measure equal to 1
if this can accomodate your need, then you can tweak your DAX a little bit.
Measure 2 =
IF(
[Measure]=1,
"#FFFFFF00",
"#FF0000"
)
Measure 3 =
IF(
[Measure]=0,
"#FFFFFF00",
"#FF0000"
)
do exact same method for border
Hope this will help.
Thank you.