Forum Discussion
Running Total from two different datatable on same line chart
I have two datatables. One with date and Expected Production and other with date and Actual Production. I have to create a line chart that shows weekly dates on x-axis and running total per week Expected Production and Actual Production on y-axis.
My calculations are working fine individually and not working when I plot these two measures on same graph.
Anonymous , You need to create a common date table with Week as one of the columns. Join date from both tables with date of date table
Create measures like this in both tables
example
Cumm Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(allselected(date),date[date] <=max(date[Date])))
To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :radacad sqlbi My Video Series Appreciate your Kudos.
1 Reply
- amitchandakSuper User
Anonymous , You need to create a common date table with Week as one of the columns. Join date from both tables with date of date table
Create measures like this in both tables
example
Cumm Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(allselected(date),date[date] <=max(date[Date])))
To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :radacad sqlbi My Video Series Appreciate your Kudos.