Fill Blank Cells with Content
In Excel spreadsheets, blank cells can sometimes affect the overall appearance and readability of the worksheet. There are several methods to quickly fill these empty cells and enhance the overall look of the worksheet.
1. Using Ctrl + G
- Select a Range: Highlight the range of cells where you want to fill in the blanks.
- Press Ctrl + G: This opens the “Go To” dialog box.
- Click on “Special”: In the dialog box, select “Special.”

- Choose “Blanks”: This will select all the blank cells in the highlighted range.

- Enter the Formula: Type the formula
=the previous cell. For example, if the first row of data starts in A2, you would enter=A2.

- Press Ctrl + Enter: This will fill all the selected blank cells with the specified formula.
2. Using the =IF() Function
- Formula: Use the formula
=IF(A2<>"", A2, D1).

- Formula Explanation: This formula checks if A2 is not empty. If it has content, it outputs the content of A2; otherwise, it takes the content from the cell above in the same column (D).
- For example, in cell D2, if A2 is “會計” the formula will return “會計”
- If A3 is blank, then in D3, the formula
=IF(A3<>"", A3, D2)will return the content from D2, which is also “會計”
By using these methods, you can efficiently fill blank cells in your Excel worksheets, improving their clarity and presentation.










