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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
mshakir
Regular Visitor

DAX Time Patterns

I have to calculate Day no of month and Day no of quarter using dax help me please.

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@mshakir , You have startofmonth and startofquarter

take date diff from this you will get month day and quarter day

 

STQ = startofquarter(Date[Date])

Day of Qtr = datediff(STQ ,Date[Date],DAY)

View solution in original post

HI @mshakir,

You can direct create a new calculated column to use the 'day' function to extract the current day no of month. For 'day of quarter', you can refer to following calculated column formula:

DayofMonth=DAY('Calendar'[Date])
DayofQuarter =
VAR cQuarter =
    INT ( MONTH ( 'Calendar'[Date] ) / 3 )
        + IF (
            MONTH ( 'Calendar'[Date] ) < 3
                && MOD ( MONTH ( 'Calendar'[Date] ), 3 ) > 0,
            1,
            0
        )
RETURN
    COUNTROWS (
        CALENDAR (
            DATE ( YEAR ( 'Calendar'[Date] ), IF ( cQuarter > 1, ( cQuarter - 1 ) * 3, cQuarter ), 1 ),
            'Calendar'[Date]
        )
    )

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

4 REPLIES 4
amitchandak
Super User
Super User

@mshakir , You have startofmonth and startofquarter

take date diff from this you will get month day and quarter day

 

STQ = startofquarter(Date[Date])

Day of Qtr = datediff(STQ ,Date[Date],DAY)

az38
Community Champion
Community Champion

Hi @mshakir 

 

Quarter No = QUARTER(Table[Date])
Day No = DAY(Table[Date])

 

https://docs.microsoft.com/en-us/dax/quarter-function-dax

https://docs.microsoft.com/en-us/dax/day-function-dax


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

This is the date table and my perspective is to calculate columns (DayNoOfQuarter and DayNoOfMonth) same like DayNoOfYear as given in screenshot. i need Day Number for both Quarter and Month neither the Quarter Number nor the Month Number

 

DAX.jpg

HI @mshakir,

You can direct create a new calculated column to use the 'day' function to extract the current day no of month. For 'day of quarter', you can refer to following calculated column formula:

DayofMonth=DAY('Calendar'[Date])
DayofQuarter =
VAR cQuarter =
    INT ( MONTH ( 'Calendar'[Date] ) / 3 )
        + IF (
            MONTH ( 'Calendar'[Date] ) < 3
                && MOD ( MONTH ( 'Calendar'[Date] ), 3 ) > 0,
            1,
            0
        )
RETURN
    COUNTROWS (
        CALENDAR (
            DATE ( YEAR ( 'Calendar'[Date] ), IF ( cQuarter > 1, ( cQuarter - 1 ) * 3, cQuarter ), 1 ),
            'Calendar'[Date]
        )
    )

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.