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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
rachaelwalker
Resolver III
Resolver III

Business days between two dates and to ignore null

I have two date columns. I am calculating the business days between the two dates but it is returning 0 days even for fields that are null. Is there a way to ignore those that do not have two dates and leave it blank? I am using this to calculate business hours // fnWorkHours(WHStarts, WHEnds, Ticket Start Date/Time, Ticket End Date/Time, Holidays)/WHDuration)

 

Here is the calculated column from within power query

 

 

Days = if [Date_Picked] <> null then fnWorkHours(WHStarts, WHEnds,[Date_Picked], if [Date_Req] <> null then [Date_Req] else null, Holidays)/WHDuration else null

 

 

rachaelwalker_0-1647955680550.png

I would like "Days" to return blanks for top 6 that have missing dates. And if possible to show a negative amount when the Date Req is greater than Date Picked. Currently it is showing 0 as well

 

 

 

2 REPLIES 2
v-yingjl
Community Support
Community Support

Hi @rachaelwalker ,

Is there a way to ignore those that do not have two dates and leave it blank?

You can try to define the null value first in the if statement when creating the custom column, like this:

= if [Date_Picked] = null or [Date_Req] = null then null else nWorkHours(WHStarts, WHEnds,[Date_Picked], if [Date_Req] <> null then [Date_Req] else null, Holidays)/WHDuration

 

 if possible to show a negative amount when the Date Req is greater than Date Picked

If you also wants to show a negative amount, perhaps you can consider sharing your custom function fnWorkHours like @ jennratten mentioned.

 

Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

jennratten
Super User
Super User

Hello - this is how you can evaluate the difference between the dates, returning null values for records without two dates and a negative value if the start date is greater than the end date.  If this does not work for you pls post the script for your custom function fnWorkHours - that may need to be modified.

 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMtc3MgAiI0MFQ0MrAwOFxFwlHSWlWJ1oJQt9Q1OojBFIpgAuY6lviCFhqA8yychIwcTKxFQhwBes0NAAYTohpYb6hliUGsKsQlaLVwLD8FgA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [StartDate = _t, EndDate = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"StartDate", type datetime}, {"EndDate", type datetime}}),
    #"Inserted Date Subtraction" = Table.AddColumn(#"Changed Type", "Days", each Duration.Days([EndDate] - [StartDate]), type number)
in
    #"Inserted Date Subtraction"

 

jennratten_0-1647957100480.png

 

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors