VBA coding question (Copy and Paste looping code)

Rjohn1

New Member
Joined
Jan 26, 2016
Messages
2
Hi,

I am new to this website and have looked around but can not find exactly the code i am looking for. Basically, I am trying to search Column A for various words (hopefully they can be pulled from a existing table in excel) and copy and paste them in Column D of the same sheet. The looping part is important because i would like the code to continue to Copy and Paste until the whole group is done and stop where there is a blank cell in Column C. Please refer to my current code and my screenshot.

This is the current code:

Sub FindBalance()
Dim rngFound As Range
With Worksheets("total termite rev mth").Range("A:A")
Set rngFound = .Find(What:="Service: 160", LookIn:=xlValues, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False, SearchFormat:=False)

rngFound.Offset(3, 3).Value = "Service: 160"
rngFound.Offset(4, 3).Value = "Service: 160"
rngFound.Offset(5, 3).Value = "Service: 160"
rngFound.Offset(6, 3).Value = "Service: 160"
rngFound.Offset(7, 3).Value = "Service: 160"
rngFound.Offset(8, 3).Value = "Service: 160"
rngFound.Offset(9, 3).Value = "Service: 160"

Set rngFound = .Find(What:="Service: 161", LookIn:=xlValues, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False, SearchFormat:=False)

rngFound.Offset(3, 3).Value = "Service: 161"
rngFound.Offset(4, 3).Value = "Service: 161"
rngFound.Offset(5, 3).Value = "Service: 161"
rngFound.Offset(6, 3).Value = "Service: 161"
rngFound.Offset(7, 3).Value = "Service: 161"
rngFound.Offset(8, 3).Value = "Service: 161"

End With
End Sub
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Here is a screenshot of the spreadsheet. As you can see i am trying to automate this to continue to copy down to D36. Each service has a different number of cells it must copy down. So i thought it would be best that the code copy down until it reaches an empty cell in the corresponding cell in Column C.


mackxv.jpg
 
Upvote 0

Forum statistics

Threads
1,215,700
Messages
6,126,283
Members
449,308
Latest member
VerifiedBleachersAttendee

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