Forum Discussion
Anonymous
4 years agoNot applicable
Display Image IF
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
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" )
1 Reply
- AlexisOlsonSuper User
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" )