Hello,
I’m trying to fill in a null cell above based on the condition that’s underneath. I can't seem to get the + and - formula correct based on the condition.
Edit: my mistake here is the file example attached. If the value below is pizza, then the null cell above needs to turn into 4. When it gets to a blank cell it needs to look at the cell below, candy, and change the null value to 6. The file named subteam test final is the result needed.
This was the formula I was trying:
IF IsEmpty([Row+1:Subteam]=="Pizza") THEN [Row-1:Subteam]=="4"
ELSEIF IsEmpty([Row+1:Subteam]=="Candy")
THEN [Row-1:Subteam]=="6"
ELSE (subteam) ENDIF
