Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
This works
If(isnull(date),networkdays(date2,today()))>16,1,0) as higher
This doesn't
If(isnull(date),networkdays(date2,today()))>16,)If(isnull(date),networkdays(date2,today()))<56,1,0) as higher_lower
I've tried ' or'and 'and'
Thanks
If(networkdays(date2,today())>16 and networkdays(date2,today())<56,1,0)
Try above.
Do you have null in the date field?
Hi @D19PAL ,
Try below.
If(isnull(date),networkdays(date2,today())>16 and (isnull(date),networkdays(date2,today()))<56,1,0)
The syntax is giving me an error.
If(networkdays(date2,today())>16 and networkdays(date2,today())<56,1,0)
Try above.
Do you have null in the date field?
That works, no I don't have null in date, do I need to add it? And why and how.
Thanks
I've got it working, I nested it underneath another if isnull statement.
Great!!!!