Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello, I need support to create a TAT calculation without consider the NULL value, normally should i use
networksday(RecevingDate,ShippingDate) i need to have it only fo the value with shipping date not null. How can i do it? thanks Massimiliano
Try this?
networksday(RecevingDate,If(Not IsNull(ShippingDate), ShippingDate))
Thanks,i tried but i have every time the result -
May be this
Only({<[Shipping date] *= {"*"}>}
NetWorksDay(RecevingDate, ShippingDate)
)
Is this what you are after?
=If(Len(ShippingDate) > 0, networksday(RecevingDate,ShippingDate), null())
Will return null() if shipping date is null or an empty string.
i have again the error as result, maybe to help the support can be important say that i'm using this formula in the KPI.