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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
RanHo
Helper IV
Helper IV

HOW TO GET THE COUNT BETWEEN 2 SEPARATE DATE COLUMN (ENTRY AND EXPIRY DATE)

Good day Guys,

     I just want to ask how to calculate between 2 dates in powerbi 2 dates column( EntryDate and ExpiryDate)  in same table.
Here is my sample result that I want to achieve: How I can get the count of the active/valid policies in between entry and expirt date valid for 1 yr?

COUNT MEASURE.png


Thanks in Advance!
- RanHo

1 ACCEPTED SOLUTION
v-stephen-msft
Community Support
Community Support

Hi @RanHo ,

 

Try to create a calculated column like

 

Valid = 
var _today=DATE(2022,9,29)
return
IF(_today>=[ENTRY DATE]&&_today<=[EXPIRY DATE],1)

 

You can replace DATE(2022,9,29) with the TODAY() function.

vstephenmsft_0-1664527629141.png

The result is this.

vstephenmsft_2-1664527766289.png

 

 

 

Best Regards,

Stephen Tao

 

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

2 REPLIES 2
RanHo
Helper IV
Helper IV

@v-stephen-msft Thanks Sir! 

v-stephen-msft
Community Support
Community Support

Hi @RanHo ,

 

Try to create a calculated column like

 

Valid = 
var _today=DATE(2022,9,29)
return
IF(_today>=[ENTRY DATE]&&_today<=[EXPIRY DATE],1)

 

You can replace DATE(2022,9,29) with the TODAY() function.

vstephenmsft_0-1664527629141.png

The result is this.

vstephenmsft_2-1664527766289.png

 

 

 

Best Regards,

Stephen Tao

 

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

 

 

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

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

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.