Please Help..Odd Macro Request

H-Man

New Member
Joined
Feb 24, 2011
Messages
2
I need to start anywhere in column B. Color Green, then copy..when the macro is run again, i need it to start where it left off, then do it again...

EX:

Say i start at B10, When i run the macro i need it to select B10 thru B28, Color Green, then copy....end Macro...

WHen i run it again, I need it to select B29 thru B47, color green, then copy.

and so on...and so on....

Please Help

Thanks
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Try this:
Code:
Option Explicit
Public StartRow As Long

Sub MyColorCopyMacro()
If StartRow = 0 Then
    StartRow = Application.InputBox("What is the first row to start with today?", _
                                        "Start", 10, Type:=1)
    If StartRow = 0 Then Exit Sub
End If

With Range("B" & StartRow).Resize(19)
    .Interior.ColorIndex = 4
    .Copy
End With

StartRow = StartRow + 19
End Sub
 
Upvote 0
Try this:
Code:
Option Explicit
Public StartRow As Long
 
Sub MyColorCopyMacro()
If StartRow = 0 Then
    StartRow = Application.InputBox("What is the first row to start with today?", _
                                        "Start", 10, Type:=1)
    If StartRow = 0 Then Exit Sub
End If
 
With Range("B" & StartRow).Resize(19)
    .Interior.ColorIndex = 4
    .Copy
End With
 
StartRow = StartRow + 19
End Sub

I had to change "19" to "18"...other then that it worked....Thank you !!!
 
Upvote 0

Forum statistics

Threads
1,224,603
Messages
6,179,854
Members
452,948
Latest member
UsmanAli786

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