Forum Discussion
Measure does not display value in card visualisation
Dunner2020 , Formula seem correct , try this one
cumulative sum =
var lastmonth =EOMONTH(TODAY(),-1)
Return
sumx(FILTER(ALL('Outages'),'Outages '[Actual Interruption Start Date Time]<=MAX('Outages '[Actual Interruption Start Date Time]) && 'Outages '[Actual Interruption Start Date Time ] <=lastmonth),
[sum_measure])
amitchandak Thanks for the response, I tried your suggested one. Following is the output for the new formula
As you can see it starts showing the value of the Current month (i.e. October) and next month (i.e. November). However, it started showing value on the card visual. As I mentioned in my actual post that this cumulative measure shows the cumulative sum until the end of last month. Don't want to show the current and next month.
- amitchandak5 years agoSuper User
Dunner2020 , As you have not selected any date on page that is why is showing null on card . Because your formula does not go beyond current month.
Your formula is correct. You need to have filter to see data on card
- v-robertq-msft5 years agoCommunity Support
Hello, @leo_89
According to its description, the measure shows the same value as September in October and November. I suggest you use the page filter to filter the months you want to display, and 10,11,12 months will disappear on the chart as well:
Best regards
Qin Community Support _Robert Team
If this post helps,then consider Accepting it as the solution to help other members find it faster.