Reports often leave a category blank after the first row of each group. To make the data usable for filtering or pivots, you need to fill those blanks down — with a formula, or a slick Go To Special trick.
The example
A region column with gaps, filled down so every row is labeled.
| A | B | |
|---|---|---|
| 1 | Raw | Filled |
| 2 | East | East |
| 3 | (blank) | East |
| 4 | West | West |
| 5 | (blank) | West |
The formula
Carry the last seen value into the blanks:
How it works
The formula simply repeats the value above when a cell is empty:
- In a helper column next to the data, enter
=IF(A2="", B1, A2)in the second data row. - If A2 has a value, the formula keeps it; if it’s blank, it copies down the filled value from the cell directly above (B1).
- Copy the formula down the whole column — each blank inherits the most recent non-blank value.
- Finally, copy the helper column and Paste Special → Values over the original, then delete the helper.
No-formula method: select the column, press F5 → Special → Blanks to select only the empty cells, type = then the up-arrow (points to the cell above), and press Ctrl+Enter. Every blank fills with the value above at once. Convert to values afterward.
Try it: interactive demo
Blank lines inherit the value above.
Variations
Go To Special (no formula)
F5 → Special → Blanks, then:
With ISBLANK
More explicit test:
Leave a marker instead
Flag blanks rather than fill:
Pitfalls & errors
Convert to values when done. The fill formula references the row above; if you sort or delete rows while it’s live, the fill breaks. Paste as values first.
Go To Special needs Ctrl+Enter. After selecting blanks and typing = + up-arrow, press Ctrl+Enter (not just Enter) to fill all selected blanks at once.
Truly blank vs empty string. A cell containing "" from a formula isn’t “blank” to Go To Special. Use the IF formula method for those.
Practice workbook
Frequently asked questions
How do I fill blank cells with the value above in Excel?
What's the fastest way to fill blanks down?
Why won't Go To Special find my blank cells?
Stop fighting formulas. Learn them in a day.
This recipe is one of hundreds of real-world formulas we teach. Our Excel Formulas & Functions class covers lookups, logic, text, and dynamic arrays hands-on — live in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.
See the Formulas & Functions Class