Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
I currently have this graph:
Sum for each name, seperated by month
I want to show % difference each month for each name. Something like the red line:
Is this possible?
Solved! Go to Solution.
Hi @Anonymous
Based on my research, it's not able to add the line trend based on different group in the column cluster. there's neither suitable visual in the power bi nor achievable using R.
You might consider raising it as an idea in the portal:
https://ideas.powerbi.com/ideas/
Hi @Anonymous
Based on my research, it's not able to add the line trend based on different group in the column cluster. there's neither suitable visual in the power bi nor achievable using R.
You might consider raising it as an idea in the portal:
https://ideas.powerbi.com/ideas/
@Anonymous , I doubt you will be able to show like that as stacked like is not split by legend
But you can use time intelligence with date table to get that
example
MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD('Date'[Date]))
last MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD(dateadd('Date'[Date],-1,MONTH)))
last month Sales = CALCULATE(SUM(Sales[Sales Amount]),previousmonth('Date'[Date]))
last MTD (complete) Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD(ENDOFMONTH(dateadd('Date'[Date],-1,MONTH))))
previous month value = CALCULATE(sum('table'[total hours value]),previousmonth('Date'[Date]))
diff = [MTD Sales]-[last MTD Sales]
diff % = divide([MTD Sales]-[last MTD Sales],[last MTD Sales])
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 :
https://radacad.com/creating-calendar-table-in-power-bi-using-dax-functions
https://www.archerpoint.com/blog/Posts/creating-date-table-power-bi
https://www.sqlbi.com/articles/creating-a-simple-date-table-in-dax/
See if my webinar on Time Intelligence can help: https://community.powerbi.com/t5/Webinars-and-Video-Gallery/PowerBI-Time-Intelligence-Calendar-WTD-YTD-LYTD-Week-Over-Week/m-p/1051626#M184
Appreciate your Kudos.