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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I want to display an Image conditionally, but I have errors in my Syntax...
DisplayExclamation =
IF(
'FaktStruktur'[Attribute] = 'Basisinfo:KontroversenBeschreibung' && 'FaktStruktur'[Value] <> BLANK,
"https://www.dropbox.com/s/c2tcp28cyzg6pku/Ausrufezeichen-klein.png?raw=1"
)
Is it possible this way? DataCategory = ImageURL, so the display of the image itself is ok
Solved! Go to Solution.
Try using double quotes around the attribute:
DisplayExclamation =
IF (
'FaktStruktur'[Attribute] = "Basisinfo:KontroversenBeschreibung"
&& 'FaktStruktur'[Value] <> BLANK,
"https://www.dropbox.com/s/c2tcp28cyzg6pku/Ausrufezeichen-klein.png?raw=1"
)
Try using double quotes around the attribute:
DisplayExclamation =
IF (
'FaktStruktur'[Attribute] = "Basisinfo:KontroversenBeschreibung"
&& 'FaktStruktur'[Value] <> BLANK,
"https://www.dropbox.com/s/c2tcp28cyzg6pku/Ausrufezeichen-klein.png?raw=1"
)
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
31 | |
19 | |
15 | |
7 | |
6 |