BURHAN OWL

0 %
MUHAMMAD BURHANUDDIN RABBANI
Front-end Developer
Ui/UX Designer
  • Residence:
    Indonesia
  • City:
    Surabaya
  • Age:
    35
Indonesia
English
html
CSS
Photoshop
Photography
WordPress
Office
  • Adobe: Photoshop, Illustrator, inDesign, After Effect
  • Luminar
  • Multimedia: Vegas Pro,
  • Google: Spreadsheet, Data Studio, Script
  • Office: Excel, Word, Powerpoint

How to replace non empty cells with specific value in Excel?

August 5, 2024

In Excel, we can quickly and easily replace or fill a selection with a specific value by pressing Ctrl + Enter keys, but, do you know how to replace just non empty cells with a certain value in your selected range which contains both blank cells and value cells.

Replace non empty cells with specific value by using Find and Replace feature

In Excel, the Find and Replace feature can help us to find all the nonblank cells and then replace them with a specified value as you like.

1. Select the data range that you want to replace only the value cells.

2. And then press Ctrl + H to open the Find and Replace dialog box, in the Find and Replace dialog, under Replace tab, type * in the Find what field, and enter the value you need in Replace with text box, see screenshot:

doc-replace-non-blanks-1

3. Then click Replace All button, and a dialog popped out to tell you the number of cells to be replaced, close the dialogs, then all the values in the selected range have been replaced with your specified data, see screenshots:

doc-replace-non-blanks-2-2doc-replace-non-blanks-3

arrow blue right bubble Replace non empty cells with specific value by using VBA code

By using the following VBA code, you can also replace all the data cells to your needed values at once. Please do as this:

1. Hold down the ALT + F11 keys to open the Microsoft Visual Basic for Applications window.

2. Click Insert > Module, and paste the following code in the Module Window.

VBA code: Replace non empty cells with specific value

Sub ReplaceNumbers()
'Update 20141111
    Dim SRg As Range
    Dim Rg As Range
    Dim Str As Variant
    On Error Resume Next
    Set SRg = Application.Selection
    Set SRg = Application.InputBox("select range:", "Kutools for Excel", SRg.Address, , , , , 8)
    If Err <> 0 Then Exit Sub
    Str = Application.InputBox("replace with:", "Kutools for Excel", Str)
    If Str = False Then Exit Sub
    For Each Rg In SRg
        If Rg <> "" Then Rg = Str
    Next
End Sub

Copy

3. Then press F5 key to run this code, and a prompt box will pop out to remind you select a range which you want to replace the data, see screenshot:

doc-replace-non-blanks-1

4. Then click OK, and enter your specific value into next prompt box, see screenshot:

doc-replace-non-blanks-1

5. And then click OK, all the values in your selected range have been replaced with the certain data at once.

Sumber : How to replace non empty cells with specific value in Excel? (extendoffice.com)

Posted in Artikel, ExcelTags:
Write a comment
© 2022 All Rights Reserved.
Email: email Me