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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
greggue
New Member

Custom Month to date

Hello all,

Our fiscal months are not based on calendar months but ends on the Saturday of every month.  Therefore the our fiscal month starts on different day every month.
I have the dax formula to calculate the last saturday of the month but I am not sure how to implement it to use in my slicer

 

greggue_0-1678909916087.png

 

Here's the measure that give me the last saturday of the month


customEOM =
VAR dateVal = [Date]
RETURN
    if (
        dateVal > DATE ( '2018, 12, 31'),
        if (
            dateVal
                > if (
                    WEEKDAY ( EOMONTH ( dateVal, 0 ), 1 ) = 7,
                    EOMONTH ( dateVal, 0 ),
                    EOMONTH ( dateVal, 0 ) - WEEKDAY ( EOMONTH ( dateVal, 0 ), 1 )
                ),
            if (
                WEEKDAY ( EOMONTH ( EOMONTH ( dateVal, 0 ), 1 ), 1 ) = 7,
                EOMONTH ( EOMONTH ( dateVal, 0 ), 1 ),
                EOMONTH ( EOMONTH ( dateVal, 0 ), 1 )
                    - WEEKDAY ( EOMONTH ( EOMONTH ( dateVal, 0 ), 1 ), 1 )
            ),
            if (
                WEEKDAY ( EOMONTH ( dateVal, 0 ), 1 ) = 7,
                EOMONTH ( dateVal, 0 ),
                EOMONTH ( dateVal, 0 ) - WEEKDAY ( EOMONTH ( dateVal, 0 ), 1 )
            )
        ),
        EOMONTH ( dateVal, 0 )
    )

 

 

1 REPLY 1
andhiii079845
Solution Sage
Solution Sage

What is if you create a custom table for your date where you can descripe which date is in which fiscal month.

That make it more easier I think.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.