How to fill blank cells with value below in excel?
3 answer(s)
Answer # 1 #
I use VBA macro for this. Quick code: vba Selection.SpecialCells(xlCellTypeBlanks).FormulaR1C1 = "=R[1]C" Selection.Value = Selection.Value
Answer # 2 #
Shortcut lovers: Alt+E+S → V (Paste Special Values) after using formulas helps finalize the fill.