Forum Discussion
DogManX
8 years agoFrequent Visitor
Adjust Calculated Column based on filter applied to another table.
I have a date table (Sales_Totals) where I am calculating the cumulative sales for each day in the quarter pulling the sales numbers from the Sales_Info table based on the Sale Date. So it pulls the ...
MFelix
8 years agoSuper User
Hi DogManX,
In this case you need to also add another measure for the previou year calculation something like:
Cumulative PY = TOTALQTD ( SUM ( Sales_Info[Sales] ); SAMEPERIODLASTYEAR ( Date_Table[Date] ) )
the both measures will be filter by context.
Regards,
MFelix
DogManX
8 years agoFrequent Visitor
But will I be able to have a line graph going through the course of the quarter using a measure? I thought I needed a column calculation for it to be more than a single data point?