Hi,
I need help. I want to subtract 2 columns from each other (Dates) but the cells need to be checked fist if blank and if blank it should ignore the one or use Today() in the other.
Example below. Row 4 and 5 work but row 6 gives me a 43027 value that should be a blank as I get the average delay in T so a 0 cant be entered if both cells are empty.
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]N[/TD]
[TD]O[/TD]
[TD]P[/TD]
[TD]Q[/TD]
[TD]R[/TD]
[TD]S[/TD]
[TD]T[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Rev[/TD]
[TD]Sub Date[/TD]
[TD]App[/TD]
[TD]APP Wc[/TD]
[TD]Rej[/TD]
[TD]Resp Date[/TD]
[TD]Review Delay
[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]a[/TD]
[TD]20/01/2017[/TD]
[TD]1[/TD]
[TD][/TD]
[TD][/TD]
[TD]28/01/2017[/TD]
[TD]=IF(T4="",TODAY()-O4,T4-O4)[/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]a[/TD]
[TD]23/01/2017[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]=IF(T5="",TODAY()-O5,T5-O5)[/TD]
[/TR]
[TR]
[TD]6[/TD]
[TD]a[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]
[/TD]
[TD]=IF(T6="",TODAY()-O6,T6-O6)[/TD]
[/TR]
</tbody>[/TABLE]
I need help. I want to subtract 2 columns from each other (Dates) but the cells need to be checked fist if blank and if blank it should ignore the one or use Today() in the other.
Example below. Row 4 and 5 work but row 6 gives me a 43027 value that should be a blank as I get the average delay in T so a 0 cant be entered if both cells are empty.
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]N[/TD]
[TD]O[/TD]
[TD]P[/TD]
[TD]Q[/TD]
[TD]R[/TD]
[TD]S[/TD]
[TD]T[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Rev[/TD]
[TD]Sub Date[/TD]
[TD]App[/TD]
[TD]APP Wc[/TD]
[TD]Rej[/TD]
[TD]Resp Date[/TD]
[TD]Review Delay
[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]a[/TD]
[TD]20/01/2017[/TD]
[TD]1[/TD]
[TD][/TD]
[TD][/TD]
[TD]28/01/2017[/TD]
[TD]=IF(T4="",TODAY()-O4,T4-O4)[/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]a[/TD]
[TD]23/01/2017[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]=IF(T5="",TODAY()-O5,T5-O5)[/TD]
[/TR]
[TR]
[TD]6[/TD]
[TD]a[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]
[/TD]
[TD]=IF(T6="",TODAY()-O6,T6-O6)[/TD]
[/TR]
</tbody>[/TABLE]