Macro Help

Mldeuser

Well-known Member
Joined
Dec 27, 2008
Messages
573
Office Version
  1. 365
Platform
  1. Windows
I would like to create a macro that will look at column "C" and for every cell that is populated until the first 1 row break (which varies from workbook to workbook) the rows after the first break are hand populated.

Will put a formula into each corresponding cell in column "J"

Is this possible?

Thanks
Mark
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
try
Rich (BB code):
Range("c1", Range("c" & Rows.Count).End(xlUp)).Offset(, 7).Formula = _
"=YourFormulaInJ1Here"
 
Upvote 0
How do i make it stop when it finds the first empty row.

Thanks
Mark
 
Upvote 0
Yes I have, it does not stop at the first empty row.
 
Upvote 0
then try
Rich (BB code):
Range("c1", Columns("c").Find("",Range("c1"),,xlWhole)).Offset(, 7).Formula = _
"=YourFormulaInJ1Here"
 
Upvote 0

Forum statistics

Threads
1,215,737
Messages
6,126,562
Members
449,318
Latest member
Son Raphon

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