Forum Discussion
Dynamically display image based on measure - DAX help!!!
- 8 years ago
You want Anonymous's Arrow Rating Quick Measure here:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Arrow-Rating/m-p/231558
Looks like a great solution. However, my current and last month rank is not a calc. Thoughts?
Hard to say without knowing what your data looks like but if it just some number in a table, just use something like:
Measure = IF(MAX([Column])<0, <unichar down arrow>, <unichar up arrow>)
Again, tough to say without knowing what your data looks like.
- Anonymous8 years agoNot applicable
This is a sample file.
The only thing not calculated is my measure that compares current and previous written as:
Change = sum(Sheet1[Last Month's Rank])-SUM(Sheet1[Current Rank])
https://www.dropbox.com/s/7n76e5g7bkhqnps/Unichar%20Rank.xlsx?dl=0
Would appreciatre if you can expand on the full DAX statement to address each of the values of Up, Down or "--"
Thanks, this is really helpful.