Forum Discussion
ChrisPBI
Advocate III
10 years agoDisplay Percent Changes alongside a Line Chart
Hello everyone, is it possible to display percent changes alongside a line chart? That is my use case: I would like to display this in the graph ...
- 10 years ago
- Create a calendar table.
calendar TABLE = CALENDAR("2001-01-01","2016-12-31") - Map one:many relationship.
- Change your measure to
LastYearAmount = CALCULATE(SUM('GGE Amounts'[GGE in kg CO2e]),PREVIOUSYEAR('calendar TABLE'[Date])) - Done
Check the details in the attached pbix, the unzip password is sent via private message.
- Create a calendar table.
Eric_Zhang
Microsoft Employee
10 years ago
- Create a calendar table.
calendar TABLE = CALENDAR("2001-01-01","2016-12-31") - Map one:many relationship.
- Change your measure to
LastYearAmount = CALCULATE(SUM('GGE Amounts'[GGE in kg CO2e]),PREVIOUSYEAR('calendar TABLE'[Date])) - Done
Check the details in the attached pbix, the unzip password is sent via private message.
ChrisPBI
Advocate III
10 years agoHi Eric,
thank you very much, that works!
But it is not possible without the calender table, right?
Why can't I use my year column for that?
Regards,
Chris
- Eric_Zhang10 years ago
Microsoft Employee
The function PREVIOUSYEAR/MONTH and some other timeintelligence functions should be on contiguous, nonrepeating dates.
- Patt8 years agoFrequent Visitor
completed line chartDatasetI tried to use the example above to get percent change to calculate for my data and couldn't get it to work for the life of me.
- Ashish_Mathur8 years ago
Super User