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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Count of Month

Hello all,

 

I need a formula that counts the number of months from a certain date, I have searched and count not find this exactly. I need to be able to count the months in the FY and our FY starts in September.

 

Basically need a formula that is TODAY - [09/01/2019] = 11

then in August it would equal 12 and so on.

 

 

Thanks in advance

@edhans 

1 ACCEPTED SOLUTION
edhans
Super User
Super User

Hey @Anonymous , Try this:

COUNTROWS(
    DISTINCT(
        SELECTCOLUMNS(
            CALENDAR(
                DATE( 2019, 9, 1 ),
                TODAY()
            ),
            "Months", YEAR( [Date] ) * 100
                + MONTH( [Date] )
        )
    )
)

You should, or course, replace the DATE(2019,9,1) with something a bit more dynamic like the start of your current fiscal year.

 

What this does is:

  1. Generates a list of dates from 9/1/2019 through today
  2. Selects a column that is the combination of the year and month, so 201909, 201910, etc. (I added years in case you wanted to have more than 12 months)
  3. Returns those distinct Year/Month combos
  4. Counts them.


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!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting

View solution in original post

4 REPLIES 4
edhans
Super User
Super User

Hey @Anonymous , Try this:

COUNTROWS(
    DISTINCT(
        SELECTCOLUMNS(
            CALENDAR(
                DATE( 2019, 9, 1 ),
                TODAY()
            ),
            "Months", YEAR( [Date] ) * 100
                + MONTH( [Date] )
        )
    )
)

You should, or course, replace the DATE(2019,9,1) with something a bit more dynamic like the start of your current fiscal year.

 

What this does is:

  1. Generates a list of dates from 9/1/2019 through today
  2. Selects a column that is the combination of the year and month, so 201909, 201910, etc. (I added years in case you wanted to have more than 12 months)
  3. Returns those distinct Year/Month combos
  4. Counts them.


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!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting
Anonymous
Not applicable

Works perfect, thank you!

Great. Glad it helped @Anonymous 



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!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting
jdbuchanan71
Super User
Super User

@Anonymous 

I'm assuming you have a date table with a month-year field so it would be something like this.

Month Count = 
VAR _Today = TODAY ()
VAR _PYStart = DATE ( YEAR ( _Today ) - IF ( MONTH ( _Today ) >= 9, 0, 1), 9, 1 )
RETURN
    COUNTROWS (
        CALCULATETABLE (
            VALUES ( DATES[Month Year] ),
            DATES[Date] <= _Today && DATES[Date] >= _PYStart
        )
    )

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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