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,
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 |
---|---|
14 | |
11 | |
8 | |
6 | |
5 |
User | Count |
---|---|
28 | |
19 | |
13 | |
8 | |
5 |