Forum Discussion
Whoule
4 years agoHelper I
Dashboard representation through line chart
Hi, I am having trouble figuring this one out. We have a dashboard that we normally update twice a month. I am trying to show, through a line chart, the progress we make on the outstanding volume...
- Anonymous4 years ago
Hi Whoule ,
Here are the steps you can follow:
1. Create calculated column.
Month = MONTH('Table'[date])2. Create measure.
Measure = CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),'Table'[Month]=MAX('Table'[Month])&&'Table'[date] = MAXX(FILTER(ALL('Table'),'Table'[Month]=MAX('Table'[Month])&&'Table'[date]=MAX('Table'[date])),[date])))3. Result:
Does this match your expected result
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Anonymous
4 years agoNot applicable
Hi Whoule ,
Here are the steps you can follow:
1. Create calculated column.
Month = MONTH('Table'[date])
2. Create measure.
Measure =
CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),'Table'[Month]=MAX('Table'[Month])&&'Table'[date] = MAXX(FILTER(ALL('Table'),'Table'[Month]=MAX('Table'[Month])&&'Table'[date]=MAX('Table'[date])),[date])))
3. Result:
Does this match your expected result
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly