Copy Row Value to Cell at an interval

extraordinare

New Member
Joined
Mar 3, 2021
Messages
3
Office Version
  1. 2010
Hi All,

Can anyone assist with a macro to copy column value to another column at different interval (up to 10 columns)

I got ticking values populating in cell A2:A10

Every 30 seconds, copy this value to B2:B10
Next 30 second, copy this value to C2:C10
Until G2:G40

Go back and overwrite B2:B40

This loop carries on until it comes to a stop a click of button

VBA Code:
Option Explicit
Public dTime As Date


   
    Sub ValueStore()
Dim i As Long
For i = 1 To Cells(Rows.Count, 1).End(xlUp).Row
    Cells(i, 2).Value = Cells(i, 1).Value
   
Next i
Call StartTimer
End Sub
   



Sub StartTimer()
    dTime = Now + TimeValue("00:00:05")
    Application.OnTime dTime, "ValueStore", Schedule:=True
End Sub

Sub StopTimer()
    On Error Resume Next
    Application.OnTime dTime, "ValueStore", Schedule:=False
End Sub


Private Sub CommandButton7_Click()
    Call StartTimer
End Sub


Private Sub CommandButton5_Click()
    Call StopTimer
End Sub
 
Last edited by a moderator:

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK

Forum statistics

Threads
1,215,059
Messages
6,122,918
Members
449,094
Latest member
teemeren

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