Forum Discussion
Multiple line chart visualisation
- 1 year ago
The issue has been resolved following one of the responses given. Many thanks
Hi Mikekeji1978
First, you need a Calendar/Date table, then you just have to use some Time
intelligence function
If you do not have one, you can create one calculated table with Calendarauto() function
For example with DateADD
Average Flow X Years Ago =
CALCULATE (
AVERAGE('RiverFlowData'[FlowValue]), -- Or your base daily mean measure logic
DATEADD('Dates'[Date], -X, YEAR)
)
You just have to replace X by how many years ago you need to compare
And of course, you can create this measure many time as you need and add all of them on the y-axis of your chart
Not sure if i will need the average function because I just want to use the time series as it. I am not calculating any average. I will go for the base daily mean measure logic. I will try that. Thank you.