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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
v-cgao-msft
Community Support
Community Support

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
v-cgao-msft
Community Support
Community Support

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

Top Solution Authors