Forum Discussion
Current vs Previous Month - Best Visualisation to show trend
Hi All
I've created 2 measures which show a count of my positive responses by the current month and previous month (see below) and I wanted to show a simple table which shows the current month positive count and some kind of visualisation which shows whether it is higher or lower than the previous month (a plus/minus or up/down arrow)
Current Month
MTD Postive = CALCULATE((Sheet1[PositiveCount]),DATESMTD('Calendar'[Date]))
Last month measure
Thanks
Dan_B
- Anonymous6 years ago
Hi Daniel_B ,
Kindly use your value columns in table instead of measure, use the measure only in conditional formatting.
Best Regards,
Mail2inba4
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
6 Replies
- AnonymousNot applicable
Hi Daniel_B ,
Please create your measure to find the Last Month comparison like below.Met/Not_Met = IF([Last_Month]>[Current_Month]],1,0)
Based on this measure create a conditional formating with Icons to acheive your request.
Best Regards,
Mail2inba4
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.- Daniel_B
Helper II
Thanks Anonymous, the visual is starting to look better in terms of data but just one more question.
How did you make it so that the value would show next to the arrow as opposed to the 1 or 0?
Thanks again
Dan_B
- AnonymousNot applicable
Hi Daniel_B ,
Go to dropdown icon for the particular column, then choose conditional formatting with icons.
Step 1:Step 2:
Best Regards,
Mail2inba4If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.