Skip to main content

How to repeat a cell value until new value is seen or reached in Excel?

As the left screenshot shown, you need to repeat the cell value until new value is seen or reached in a column in Excel. In this case, you need to repeat value A in the following blank cell until value B is reached, and repeat value B until value C is seen. How to achieve it? This article will help you.

Repeat a cell value until new value is seen or reached with formula
Repeat a cell value until new value is seen or reached with referencing value above
Repeat a cell value until new value is seen or reached with VBA code
Easily repeat a cell value until new value is seen or reached with only several clicks


Repeat a cell value until new value is seen or reached with formula

You can use formulas to repeat a cell value until new value is seen in Excel. Please do as follows.

1. In a new column, select a blank cell which is adjacent to the cell (E2) you need to repeat its value, then enter formula =E2 into the Formula Bar and press the Enter key. See screenshot:

2. Select the next cell (F3) in the help column, enter formula =IF(E3="",F2,E3) into the Formula Bar then press the Enter key.

3. Keep selecting cell F3, drag the Fill Handle down to repeat all cell values until new value is seen. See screenshot:


Easily repeat a cell value until new value is reached in Excel:

The Fill Blank Cells utility of Kutools for Excel can help you to repeat a cell value in a list until new value is seen or reached in Excel as the below screenshot shown.
Download and try it now! (30-day free trail)


Repeat a cell value until new value is seen or reached with referencing value above

Besides the above formula, you can select all blank cells at first, and then reference all above values to fill the blank cells with shortcut keys.

1. Select the column you need to repeat cell value, then press the F5 key to open the Go To dialog box, then click Special button.

2. In the Go To Special dialog box, select the Blanks option and then click the OK button. See screenshot:

3. Now all blank cells in selected column are selected, please enter an equal sign =, press the up arrow key once, and then press the Ctrl + Enter keys simultaneously.

Then you can see the cell value in selected column is repeated until new value is seen as below screenshot:


Repeat a cell value until new value is seen or reached with VBA code

The following VBA code can also help you to repeat a cell value until new value is seen in a certain column in Excel.

1. Select the column range you need to repeat cell value until new value is seen, then press Alt + F11 keys simultaneously to open the Microsoft Visual Basic for Applications window.

2. In the Microsoft Visual Basic for Applications window, click Insert > Module. Then copy and paste the below VBA code into the Module window.

VBA code: Repeat a cell value until new value is seen in Excel

Sub FillDown()
Dim xRng As Range
Dim xRows As Long, xCols As Long
Dim xRow As Integer, xCol As Integer
Set xRng = Selection
xCols = xRng.Columns.CountLarge
xRows = xRng.Rows.CountLarge
For xCol = 1 To xCols
  For xRow = 1 To xRows - 1
    If xRng.Cells(xRow, xCol) <> "" Then
      xRng.Cells(xRow, xCol) = xRng.Cells(xRow, xCol).Value
      If xRng.Cells(xRow + 1, xCol) = "" Then
        xRng.Cells(xRow + 1, xCol) = xRng.Cells(xRow, xCol).Value
      End If
    End If
  Next xRow
Next xCol
End Sub

3. Press the F5 key to run the code. Then all blank cells in selected column range are filled with value above immediately.


Easily repeat a cell value until new value is seen or reached with only several clicks

This section will introduce the Fill Blank Cells utility of Kutools for Excel. With this utility, you can easily repeat cell value until new value is seen with only several clicks.

Before applying Kutools for Excel, please download and install it firstly.

1. Select the column range you need to repeat cell value, then click Kutools > Insert > Fill Blank Cells. See screenshot:

2. In the Fill Blank Cells dialog box, select the Based on values in the Fill with section, choose Down option in the Options section, and finally click the OK button. See screenshot:

Then all blank cells are filled with above cell values immediately as below screenshot shown.

  If you want to have a free trial (30-day) of this utility, please click to download it, and then go to apply the operation according above steps.


Demo: Easily repeat a cell value until new value is seen or reached with Kutools for Excel


Related articles:

Best Office Productivity Tools

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions…
Popular Features: Find, Highlight or Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  |  Compare Ranges & Columns ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   ... and more

Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time.  Click Here to Get The Feature You Need The Most...

Description


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
Comments (6)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
Once I changed the formula in step 2 for cell F3 to be =IF(E2="",F2,E2), it worked perfectly.
This comment was minimized by the moderator on the site
Thanks a ton, this works just perfect!
This comment was minimized by the moderator on the site
Thank you bro. It works
This comment was minimized by the moderator on the site
Unter Office 365 (Excel 2016) funktioniert dieses Kutools for Excel nicht, um die Zellenwerte zu wiederholen und Excel hängt sich auf und reagiert nicht mehr
This comment was minimized by the moderator on the site
Dim xRow As Long, xCol As Long
if you have a very large dataset
This comment was minimized by the moderator on the site
Thanks a lot , fantastic
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
Rate this post:
0   Characters
Suggested Locations