March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi Experts,
I have a sample table like below:
Account | Company | Type | Period | YTD |
001 | AAA | B1 | 202211 | 100 |
002 | AAA | C1 | 202211 | 200 |
001 | BBB | C2 | 202211 | 300 |
007 | FFF | B1 | 202212 | 200 |
009 | RRR | C1 | 202212 | 400 |
011 | AAA | C2 | 202212 | 500 |
007 | RRR | B1 | 202301 | 200 |
012 | DDD | C1 | 202301 | 300 |
008 | BBB | C2 | 202301 | 500 |
But these values are YTD values and I need to convert this to a MTD table like this:
Account | Company | Type | Period | MTD |
001 | AAA | B1 | 202201 | 100 |
002 | AAA | C1 | 202201 | 200 |
001 | BBB | C2 | 202201 | 300 |
007 | FFF | B1 | 202202 | 100 |
009 | RRR | C1 | 202202 | 200 |
011 | AAA | C2 | 202202 | 200 |
007 | RRR | B1 | 202301 | 200 |
012 | DDD | C1 | 202301 | 300 |
008 | BBB | C2 | 202301 | 500 |
Can someone help?
Solved! Go to Solution.
Hi Cho, unfortunately, my data source is not SQL base. I've found a solution using Power Query.
1) Add a custom column for YearnMonth
2) Add a custom column for Month
3) Add a custom column for Sales YTD Prev, which is the Sales YTD of the previous month. Using
try #"Sorted Rows"[Sales YTD] {[Month] - 2} otherwise 0
4) Compute the difference betw [Sales YTD] and [Sales YTD Prev]
I can't upload the source pbix file. Pls contact me if anyone needs it
Hi Cho, unfortunately, my data source is not SQL base. I've found a solution using Power Query.
1) Add a custom column for YearnMonth
2) Add a custom column for Month
3) Add a custom column for Sales YTD Prev, which is the Sales YTD of the previous month. Using
try #"Sorted Rows"[Sales YTD] {[Month] - 2} otherwise 0
4) Compute the difference betw [Sales YTD] and [Sales YTD Prev]
I can't upload the source pbix file. Pls contact me if anyone needs it
Hi Meiwah. Thanks for your solution. I'd like to ask to share the PBIX file if possible.
I have YTD value of multiple categories for each month. My fiscal year is from April to March. Is this solution can work for multiple categories ?
Hi HAP,
can pm me your email? I can't attach the file here 🙂
Yes, can anyone pls help. I've the same problem. Thanks!
Hey @meiwah! I found a solution for this.
I could not do this in Power Query and I feel there is no point of adding columns there.
What I did was, when loading data, I wrote a small SQL so from data source itself, I convert YTD figures to monthly values.
I used SQL functions like LAG(), OVER(), PARTITION BY().
Another way is to add a monthly column in data source.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
21 | |
16 | |
13 | |
12 | |
9 |
User | Count |
---|---|
34 | |
31 | |
20 | |
19 | |
17 |