The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
25 | |
10 | |
8 | |
7 | |
6 |
User | Count |
---|---|
32 | |
12 | |
10 | |
10 | |
9 |