Forum Discussion

Mark_reg's avatar
Mark_reg
Brass Contributor
Jun 12, 2018
Solved

If Cell ISBLANK then look at other Cell

Hello Everyone,   I have a starting date (Sheet1!F8), and 2 dates to compare to (A6, and A7), If A6 or A7 is later than Sheet!F8, I want a name to display in the field (imported from Sheet1!F6). Ho...
  • SergeiBaklan's avatar
    SergeiBaklan
    Jun 12, 2018

    So, you have two lesson dates in A6 and A7 (or that could be more, in A8, A9, etc.?). If the latest non-blank lesson date is greater or equal to starting date you display the name, otherwise nothing. Correct?

     

    If so the formula could be

    =IF(MAX(A6:A7)>=Sheet1!F8,Sheet1!F6,"")

     

Resources