Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I currently have 3 tables - sales, customer, date. For the date table, I am using the [Month End] column (always the last day of the month) on the 'Date Table' to filter the Sales table (see the screenshot below).
I have written a measure below to calcualte the total mobile sales when the transaction date equals the posting date:
Current Month Mobile Sales =
Calculate(
Sum(Sales[Total Amount],
Customer[Customer_Type] = "Mobile",
Sales[Transaction Date] = Sales[Posting Date]
)
How can I get the "previous month Mobile Sales"? I wrote the DAX below:
Calculate(
[Current Month Mobile Sales],
However, it only works when there are 31 days in a month. How should I fix it to get the correct "previous month Mobile Sales" when filtering by the [Month End] column?
Thanks!
Solved! Go to Solution.
Hi @some_bih, I don't think that's the solution. However, I figured it out myself using
Hi @InfiniteSheldon did you try DAX function TOTALMTD? Hope this help
https://learn.microsoft.com/en-us/dax/totalmtd-function-dax?WT.mc_id=DP-MVP-4025372
Proud to be a Super User!
Hi @some_bih, could you please be more specific? I am not sure how TOTALMTD is going to help calculate previous month total when two dates are the same.
Apply as measure X=TOTALMTD(
[Current Month Mobile Sales], 'Your Date table date column key')
Check result. Hope this help
Proud to be a Super User!
Hi @some_bih, I don't think that's the solution. However, I figured it out myself using
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
17 | |
10 | |
10 | |
8 | |
6 |
User | Count |
---|---|
20 | |
18 | |
16 | |
13 | |
10 |