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
Hello,
I am trying to create a DAX measure to get the Percentage Change from Month to Month. Problem is I do not have a traditional Dates table, my Dates table is more like a String table with Dates.
Here is the visual i am trying to create:
-- The number of filings in here is a simple measure, and then I use a domension table to get the court names, and then i use my dates dimension (not really a dates table) to get the Year month
I want another column that has percentage change showing., but I cant use PREV MONTH syntax for the measure because my dates table is not marked Dates.
What I did in my dates table, I created a Index, so that at least I can Rank my row to get the dates in order:
Thanks
Solved! Go to Solution.
@pfarahani , Try like this example , Date here us your Month year table
This Month = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[index]=max('Date'[index])))
Last Month = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[index]=max('Date'[index])-1))
diff = [This Month]-[Last Month]
diff % = divide([This Month]-[Last Month],[Last Month])
@pfarahani , Try like this example , Date here us your Month year table
This Month = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[index]=max('Date'[index])))
Last Month = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[index]=max('Date'[index])-1))
diff = [This Month]-[Last Month]
diff % = divide([This Month]-[Last Month],[Last Month])
@amitchandak , worked out pretty nice i think, 1 small issue remains. Below is the chart, not bad, however my data ends with December 2019, but its still trying to calculate for the January 2020. Is their a solution using ISBLANK or an IF to stop after Dec 2019. thanks
@amitchandak I think I got something here,
I took the code you provided for diff% and modify to this:
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 |
---|---|
134 | |
91 | |
90 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
72 | |
68 |