How can I modify the below formula to also exclude the values of S43 and/or U43 if T43 and/or V43 are empty?
=IF(AND(V43<DATEVALUE("5/5/2018"),T43<DATEVALUE("5/5/2018")),S43+U43,IF(V43<DATEVALUE("5/5/2018"),U43,IF(T43<DATEVALUE("5/5/2018"),S43,0)))
I'd like it to follow the same logic, e.g., if T43<DATEVALUE("5/5/2018"),S43 but to specify that if T43 is blank, then not include S43 in the cell.
Solved by O. L. in 28 mins