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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Maheshguptaz
Helper III
Helper III

starting count (12 months ago)

Hi,

 

I'm trying to get the starting count from 12 months ago and it should be dynamic to perform R12 calculations. For example:

Ending count = Oct'21
Starting Count = Nov'20

 

I need help to get the starting count. Any suggestions?

Regards,
Mahesh

1 ACCEPTED SOLUTION

HI @Maheshguptaz 

 

Try this:

R12 Start number =
VAR _EndDate =
    MAX ( 'Calendar'[Date] )
VAR _StartDateS =
    DATE ( YEAR ( _EndDate ) - 1, MONTH ( _EndDate ) - 1, 1 )
VAR _StartDateF =
    ENDOFMONTH ( _StartDateS )
RETURN
    CALCULATE (
        COUNTA ( ExcelDB_Headcount[Employee ID] ),
        FILTER (
            ALL ( 'Calendar' ),
            'Calendar'[Date] >= _StartDateS
                && 'Calendar'[Date] <= _StartDateF
        )
    )

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos!!

 

View solution in original post

4 REPLIES 4
v-xiaotang
Community Support
Community Support

Hi @Maheshguptaz 

You can use Edate() or Eomonth(),

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

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

e.g.

Start Date = 
    VAR _date= MAX('DATE Table'[Date]) //in this example, max date in table is 2021/10/21
    var _start=EDATE(_date,-12)
RETURN _start

vxiaotang_1-1636608856751.png

Start Date = 
    VAR _date= MAX('DATE Table'[Date]) //in this example, max date in table is 2021/10/21
    var _start=EOMONTH(_date,-12)
RETURN _start


vxiaotang_2-1636608876293.png

 

 

 

Best Regards,

Community Support Team _Tang

If this post helps, please consider Accept it as the solution to help the other members find it more quickly.

VahidDM
Super User
Super User

Hi @Maheshguptaz 

 

You can use the PREVIOUSYEAR DAX function to find the solution.

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos!!

 

hi @VahidDM ,

I'm getting the total of last 12 months if I use the following DAX:

R12 Start number = CALCULATE(COUNTA(ExcelDB_Headcount[Employee ID]),PREVIOUSYEAR('Calendar'[Date]))
I'm trying to get only the count for a single month.


HI @Maheshguptaz 

 

Try this:

R12 Start number =
VAR _EndDate =
    MAX ( 'Calendar'[Date] )
VAR _StartDateS =
    DATE ( YEAR ( _EndDate ) - 1, MONTH ( _EndDate ) - 1, 1 )
VAR _StartDateF =
    ENDOFMONTH ( _StartDateS )
RETURN
    CALCULATE (
        COUNTA ( ExcelDB_Headcount[Employee ID] ),
        FILTER (
            ALL ( 'Calendar' ),
            'Calendar'[Date] >= _StartDateS
                && 'Calendar'[Date] <= _StartDateF
        )
    )

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos!!

 

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!

December 2024

A Year in Review - December 2024

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