Hi, I'm trying to set a formula so that if a cell is blank and the cell above is not, then the destination cell takes the value of the not blank cell:
(in this example C2 is the value having cell and C3 is the blank cell)
Something like =if((ISBLANK(C3)), AND(NOT(ISBLANK(C2))),THEN C2)
Your...