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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply

End of Month Date Table

Hi all, 

 

How can I create a new date table but only consist of End of Month dates? 

Thank you very much before-hand. 

1 ACCEPTED SOLUTION
mahoneypat
Employee
Employee

Here is one way to do it in a DAX calculated table.  You can adapt it to start at a different month or extend more or less.

 

Date EOMs =
VAR nums =
    GENERATESERIES (
        0,
        24,
        1
    )
RETURN
    ADDCOLUMNS (
        nums,
        "Date",
            EOMONTH (
                DATE ( 2019131 ),
                [Value]
            )
    )

 

Regards,

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


View solution in original post

6 REPLIES 6
faisalazh
Advocate II
Advocate II

You can also create a new calculated table using this formula:

 

Calendar = filter( calendar( date(2022,1,1), date(2022,12,31)), [Date] = EOMONTH([Date], 0))

 

 

Thank you for your reply @ChrisMendoza. I have done something similar to what you suggested but now I would like to the "unrelate" the new date table from an existing Calendar table. 

Awesome! Just what I need. Thank you @mahoneypat !

ChrisMendoza
Resident Rockstar
Resident Rockstar

@MelbourneBadger -

From an existing Date Table as:

Date = CALENDAR(DATE(2019,01,01),TODAY())

Add a Column as :

EoM Column = ENDOFMONTH('Date'[Date])

Create new table as :

EoM = DISTINCT('Date'[EoM Column])

 image.png






Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

Proud to be a Super User!



mahoneypat
Employee
Employee

Here is one way to do it in a DAX calculated table.  You can adapt it to start at a different month or extend more or less.

 

Date EOMs =
VAR nums =
    GENERATESERIES (
        0,
        24,
        1
    )
RETURN
    ADDCOLUMNS (
        nums,
        "Date",
            EOMONTH (
                DATE ( 2019131 ),
                [Value]
            )
    )

 

Regards,

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Hi @mahoneypat,

Is it possible to adjust the series generation such that it will be added month by month instead of having total number of months in the series already specifically defined?

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.