I really need your help!
The following formula works:
=IF(F7="NR",R7-T7,IF(F7="OR",R7-T7,IF(F7="PR",R7-T7,IF(F7="SR",R7-T7,””))))
I need to add, though, that if there is nothing (no date) in cell R7, then this cell should be left blank. I have the following formula and it's not working:
=IF(R7<>””,(IF(F7="NR",R7-T7,IF(F7="OR",R7-T7,IF(F7="PR",R7-T7,IF(F7="SR",R7-T7,””))))))
This should read:
if cell R7 does not have a date, then leave this cell blank
if cell R7 DOES have a date then:
if F7 is equal to NR, then subtract date in R7 against date in T7
else
if F7 is equal to OR, then subtract date in R7 against date in T7
else
if F7 is equal to PR, then subtract date in R7 against date in T7
else
if F7 is equal to SR, then subtract date in R7 against date in T7
else
leave this cell blank (F7 is something other than NR, OR, PR, or SR)
Any help would GREATLY be appreciated!
The following formula works:
=IF(F7="NR",R7-T7,IF(F7="OR",R7-T7,IF(F7="PR",R7-T7,IF(F7="SR",R7-T7,””))))
I need to add, though, that if there is nothing (no date) in cell R7, then this cell should be left blank. I have the following formula and it's not working:
=IF(R7<>””,(IF(F7="NR",R7-T7,IF(F7="OR",R7-T7,IF(F7="PR",R7-T7,IF(F7="SR",R7-T7,””))))))
This should read:
if cell R7 does not have a date, then leave this cell blank
if cell R7 DOES have a date then:
if F7 is equal to NR, then subtract date in R7 against date in T7
else
if F7 is equal to OR, then subtract date in R7 against date in T7
else
if F7 is equal to PR, then subtract date in R7 against date in T7
else
if F7 is equal to SR, then subtract date in R7 against date in T7
else
leave this cell blank (F7 is something other than NR, OR, PR, or SR)
Any help would GREATLY be appreciated!