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
kastriot
Frequent Visitor

Average per quarter

Hello,

 

I am trying to get the average of the count of [Staff ID] per quarter and I was hoping someone can help me.

Please check the formulas on the right side to maybe have a better understanding of what I am trying to achieve.

 

So, I am trying to create a formula that takes into account all [Staff ID] MTD and divide it by the Max number of [Month no.]. Of course, I am open to any other approach that might give me the same results.

 

Thank you

 

avg headcounts.PNG

 

1 ACCEPTED SOLUTION
themistoklis
Community Champion
Community Champion

@kastriot

 

You can use the following formula:

Measure = CALCULATE (
        COUNT ( 'Table'[Staff ID] ),
        FILTER (
            All('Table'),
            'Table'[Quarter] <= MAX ( 'Table'[Quarter] )
        )
    )
/ MAX('Table'[Month No])

 

Workspace on this link.

View solution in original post

2 REPLIES 2
themistoklis
Community Champion
Community Champion

@kastriot

 

You can use the following formula:

Measure = CALCULATE (
        COUNT ( 'Table'[Staff ID] ),
        FILTER (
            All('Table'),
            'Table'[Quarter] <= MAX ( 'Table'[Quarter] )
        )
    )
/ MAX('Table'[Month No])

 

Workspace on this link.

That worked great. Thank you 

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.