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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
lancemac_1
Frequent Visitor

Dynamically calculate count of insurance that are about to expire based on date range from slicer

I have a column insurance_exp_date which contains expiry dates form which i want to count the based on the date slicer which will be the ones that are expiring in next 30 days, the ouput can be the count of the insurance_exp_date or can be flagged.
but when I am using the slicer i get wrong values 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @lancemac_1 ,

 

You might consider creating an un-connected table to hold all the values of the slicer.

 

Table = CALENDAR(<StartDate>,<EndDate>)

 

Then create a measure like:

 

Measure =
VAR _selected_date =
    MAX ( 'Table'[Date] )
VAR _30days_date = _selected_date + 30
VAR _count =
    CALCULATE (
        COUNTROWS ( 'YourTableName' ),
        'YourTableName'[insurance_exp_date] >= _selected_date
            && 'YourTableName'[insurance_exp_date] <= _30days_date
    )
RETURN
    _count

 


Now, you can use the measure in your visuals to display the count of insurance policies expiring in the next 30 days. If you're still experiencing issues with the slicer, please provide more information about your data model and the slicer configuration, so I can better understand the problem and help you find a solution.

 

How to Get Your Question Answered Quickly - Microsoft Fabric Community

How to provide sample data in the Power BI Forum - Microsoft Fabric Community

 

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @lancemac_1 ,

 

You might consider creating an un-connected table to hold all the values of the slicer.

 

Table = CALENDAR(<StartDate>,<EndDate>)

 

Then create a measure like:

 

Measure =
VAR _selected_date =
    MAX ( 'Table'[Date] )
VAR _30days_date = _selected_date + 30
VAR _count =
    CALCULATE (
        COUNTROWS ( 'YourTableName' ),
        'YourTableName'[insurance_exp_date] >= _selected_date
            && 'YourTableName'[insurance_exp_date] <= _30days_date
    )
RETURN
    _count

 


Now, you can use the measure in your visuals to display the count of insurance policies expiring in the next 30 days. If you're still experiencing issues with the slicer, please provide more information about your data model and the slicer configuration, so I can better understand the problem and help you find a solution.

 

How to Get Your Question Answered Quickly - Microsoft Fabric Community

How to provide sample data in the Power BI Forum - Microsoft Fabric Community

 

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.