Find and paste in different column on same row when found.

Golem

New Member
Joined
Aug 10, 2017
Messages
4
Hi I'm using Excel 2016. I'm trying to find a way to look for a value and when that value is found on any row paste a predefined value into column D on that same row. Here is pic to give you an idea if I didnt explain it well. I want the script to find any row with "hey you found me" and on that same row in Column D, put "predefined value".



335f3.png
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Code:
Sub t()
Dim fn As Range, fadr As String
With ActiveSheet
    Set fn = .UsedRange.Find("Hey you found me", , xlValues, xlWhole)
        If Not fn Is Nothing Then
            fadr = fn.Address
            Do
                .Range("D" & fn.Row) = "Predefined Value"
                Set fn = .UsedRange.FindNext(fn)
            Loop While fn.Address <> fadr
        End If
End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,243
Messages
6,170,971
Members
452,371
Latest member
Frana

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top