Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi
I've tried to read through a couple of posts on this matter but can't seem to find out if this is doable.
What I want to do is to show the difference between two coulumns in a column chart i percentage.
I've found this example from google that shows how it would look like in excel. Do someone know if this is doable in BI in any way? Maybe you guys know a simple solution to the question.
This is my ultra simple table:
Date Downloads
Aug/22 | 21093 |
Sep/22 | 22345 |
Oct/22 | 36509 |
Nov/22 | |
Dec/22 | |
Jan/23 | |
Feb/23 | |
Mar/23 |
Thanks in advance
BR
Joachim
@hans3400 , Use a MOM measure using time intelligence and date table. Use a Clustered Bar Line visual and ise Change % on line
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]))
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]))
MOM = divide([This month]-[Last Month], [Last Month])
Time Intelligence, DATESMTD, DATESQTD, DATESYTD, Week On Week, Week Till Date, Custom Period on Period,
Custom Period till date: https://youtu.be/aU2aKbnHuWs&t=145s
Power BI — Month on Month with or Without Time Intelligence
https://medium.com/@amitchandak.1978/power-bi-mtd-questions-time-intelligence-3-5-64b0b4a4090e
https://www.youtube.com/watch?v=6LUBbvcxtKA
I will give it a try.
Thank u so much for your thorough response!