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

Calculate absence days with no end date

Hi,

 

I wonder if someone could help me with my query. 

 

I am trying to calculate days of staff absence. I have created a query which works for the majority of absences apart from ones that have no end date yet.

 

Days ={Number.From([Absence.Start])..Number.From([Absence.End])}

 

I am wondering if it possible to amend this query so that if there is no end date it will use todays date? Any assistance would be greatly appreciated.

1 ACCEPTED SOLUTION
Vijay_A_Verma
Super User
Super User

Use this

= {Number.From([Absence.Start])..Number.From(if [Absence.End]=null or [Absence.End]="" then Date.From(DateTime.FixedLocalNow()) else [Absence.End])}

 

View solution in original post

2 REPLIES 2
Casi
Frequent Visitor

Perfect. Thank you

Vijay_A_Verma
Super User
Super User

Use this

= {Number.From([Absence.Start])..Number.From(if [Absence.End]=null or [Absence.End]="" then Date.From(DateTime.FixedLocalNow()) else [Absence.End])}

 

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

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

MayPowerBICarousel

Power BI Monthly Update - May 2024

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

Top Solution Authors
Top Kudoed Authors