Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
In my report there is one column(Survey Rating) I need to show smiley faces (Icon) on bases of Survey rating. Colums included in this visualization are survey rating and type. For exmple :
I have used below measure on cards to show the emoji's as per the rating.
Survey_Emoji = SWITCH(
TRUE(),
ISBLANK(table[survey rtaing]), "😶",
table[survey rtaing] >= 9, "🙂",
table[survey rtaing] >= 7, "😐",
table[survey rtaing] >= 0, "🙁",
"😶"
)
but user wants their icons instead of these emoji's like if survey rating >=9, smiley face icon shared by user should appear on card. how to use icon in card on conditions. for one survey_type one card is required.
Solved! Go to Solution.
HI @swatichouksey05,
I'd like to suggest you create a new table with icons and index, then you can change the Dax expression to lookup the new table value based on current rank.
You can change the table icons dynamically based on the records that user provided.
In addition, you can also try import these image data to power bi table instead of use image URL.
Storing Images in a PowerBI/Analysis Services Data Models
Regards,
Xiaoxin Sheng
HI @swatichouksey05,
I'd like to suggest you create a new table with icons and index, then you can change the Dax expression to lookup the new table value based on current rank.
You can change the table icons dynamically based on the records that user provided.
In addition, you can also try import these image data to power bi table instead of use image URL.
Storing Images in a PowerBI/Analysis Services Data Models
Regards,
Xiaoxin Sheng
Hi Xiaoxin Sheng,
I can't use table as per client requirement. thye need in cards only.
Thanks for reply. I tried with HTML content visual and used .svg image sourcecode in measures. Then used measures in column conditions.
Regards
SC
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
12 | |
2 | |
2 | |
2 | |
1 |