Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi All,
How to find order count for current month & previous month for dates in past - power query or DAX.
Example i want to do the stats for the past, example i have months 2021 oct, nov,dec. now is nov 2022.
I want to calculate order count by merchant by month & previous month order count by merchant by month.
Can anyone suggest me how & what kind of dax formula or query to use to get to the values?
any help is highly appreciated.
Regards
Hello - I think this would best be done with DAX.
Make sure there is an active, single direction relationship between the date column in your calendar table and the order date column in the Orders table. You will also need a couple of measures. Note, to use the measures below, your calendar table must also contain a column named Year Month Number. You can add this as a calculated column if needed.
Measure 1: # orders for the current month
# Orders:= distinctcount ( Orders[ORDER_ID] )
Measure 2: # orders for the prior month
# Orders PM :=
VAR CurrentYearMonthNumber = SELECTEDVALUE ( 'Calendar'[Year Month Number] )
VAR PreviousYearMonthNumber = CurrentYearMonthNumber - 1
VAR Result =
CALCULATE (
[# Orders],
REMOVEFILTERS ( 'Calendar' ),
'Calendar'[Year Month Number] = PreviousYearMonthNumber
)
RETURN
Result
This was taken from DAX Patterns (Month-Related Calculations): https://www.daxpatterns.com/month-related-calculations/
Hi @jennratten , an all,
Many thanks for your suggestion. I tried but the Order PM measure doesn't return any value. can you suggest me what went wrong and what i should improve?
Order count_ = DISTINCTCOUNT(Orders[ORDER_ID])
Orders PM =
VAR CurrentYearMonthNumber = SELECTEDVALUE ( 'Calender'[Date].[MonthNo] )
VAR PreviousYearMonthNumber = CurrentYearMonthNumber - 1
VAR Result =
CALCULATE (
Orders[Order count_],
REMOVEFILTERS ( 'Calender' ),
Calender[Date] = PreviousYearMonthNumber
)
RETURN
Result
Good progress! Here are a couple of notes...
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 6 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |