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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
escaddie
Frequent Visitor

Measure to get a running total for policies that billed only during a specific period

Hey Community, 

I have been langishing over this for some time.

I have a list of policies with start and end dates and I want to visualize them over time with a total of "active policies" for any given period. 

PolicyNoStartDateEndDate
11/1/20191/15/2020
21/1/20202/20/2022
31/2/20202/20/2022
43/1/2021 

 

Some policies don't have end dates because they are continuously billing. 

 

Thank you, 

2 ACCEPTED SOLUTIONS

This is magical! I didnt think to look at HR type visualizations. Thank you. Im going to impliment this today and if all is well will mark as the solution.

View solution in original post

v-zhangti
Community Support
Community Support

Hi, @escaddie 

 

You can try the following methods.

Date Table:

Date = CALENDAR(MIN('Table'[StartDate]),MAX('Table'[EndDate]))

Measure:

active policies = 
CALCULATE (
    COUNT ( 'Table'[PolicyNo] ),
    FILTER (
        ALL ( 'Table' ),
        [StartDate] <= MAX( 'Date'[Date] )
            && [EndDate] >= MAX('Date'[Date] )
    )
)
    + CALCULATE (
        COUNT ( 'Table'[PolicyNo] ),
        FILTER (
            ALL ( 'Table' ),
            [StartDate] <= Min( 'Date'[Date] )
                && [EndDate] = BLANK ()
        )
    )

vzhangti_0-1660717844517.png

vzhangti_2-1660717928143.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

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

View solution in original post

4 REPLIES 4
v-zhangti
Community Support
Community Support

Hi, @escaddie 

 

You can try the following methods.

Date Table:

Date = CALENDAR(MIN('Table'[StartDate]),MAX('Table'[EndDate]))

Measure:

active policies = 
CALCULATE (
    COUNT ( 'Table'[PolicyNo] ),
    FILTER (
        ALL ( 'Table' ),
        [StartDate] <= MAX( 'Date'[Date] )
            && [EndDate] >= MAX('Date'[Date] )
    )
)
    + CALCULATE (
        COUNT ( 'Table'[PolicyNo] ),
        FILTER (
            ALL ( 'Table' ),
            [StartDate] <= Min( 'Date'[Date] )
                && [EndDate] = BLANK ()
        )
    )

vzhangti_0-1660717844517.png

vzhangti_2-1660717928143.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

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

This was great pretty much exactly what I needed. I changed the ALL filters to ALL selected so I could filter them on the visual but other than that works like a charm. Thank you.

amitchandak
Super User
Super User

@escaddie , refer to my blog and the attached file after the signature on the same topic

 

https://community.powerbi.com/t5/Community-Blog/HR-Analytics-Active-Employee-Hire-and-Termination-tr...

 

 

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

This is magical! I didnt think to look at HR type visualizations. Thank you. Im going to impliment this today and if all is well will mark as the solution.

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!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

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