Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Be 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

Reply
Vinoth31
New Member

How to find order count for current month & previous month for dates in past - power query or DAX

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 valuesCapture.PNGCapture1.PNG?

 

any help is highly appreciated.

 

Regards

3 REPLIES 3
jennratten
Super User
Super User

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

1.PNG2.PNG3.PNG4.PNG

 

Good progress! Here are a couple of notes...

  • YearMonthNumber - if the date is 11/30/2022, the value of this field would be 220211.  It is important to think about the year in conjunction with the month so that you can maintain continuity across years.  For example, the difference between December and January.  Without the year being specified, the counts for December for all years would be retuned and compared against the counts for January across all years.
  • The same column from the calendar table should be used in the CurrentYearMonthNumber variable and the Result variable.  In your script you are referencing two different columns.
  • The relationship between Orders and Calendar should be single direction; yours is bidirectional.  While there are some valid use cases for bidirectional relationships, when possible, model the data so that single direction relationships are used in order to avoid data ambiguity and inefficient models.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.