I have an auto-updating list and I want to to save those data points every hour.

CeaserHockey

New Member
Joined
Nov 27, 2018
Messages
3
Dear Excel Geniuses,

I am trying to copy a cell every time it updates and put it in a new cell.

I am working in a sheet with different numerical values that automatically update every hour. These values are a2:a101. I want to record their changed values to the right of the original number every hour. For example a2:101 is the original, then b2:b101 is the value after an hour, c2:c101 is the value after 2 hours and so on.

I have tried everything I can to try to figure this out but it seems out of my skill level. I don't have any experience with vb within excel so if the solution involves coding please dumb it down as much as possible.

Thank you.
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
CeasarHockey,
Welcome to the Forum.
I realize you were looking for something simple, but to see what is required, have a look at this link:

Scheduling Events With OnTime And Windows Timers
http://www.cpearson.com/Excel/OnTime.aspx

You should consider what happens if your original list 'a2:a101' is completed at 10:40 AM? Is it updated at 11:00 AM or 11:40 AM?

Here is some code to copy the 'values' in column A that might be used in the 'Your Code' as designated in the above link:
Code:
Sub UpdateMyData()
Dim LastCol as Long
LastCol = Cells(2, Columns.Count).End(xlToLeft).Column    'Finds last used column
Range("$A$2:$A$101").copy Range(cells(2,LastCol).Offset(0,1),cells(101,LastCol).Offset(0,1)).PasteSpecial xlValues
End Sub


Good luck!
Perpa
 
Upvote 0

Forum statistics

Threads
1,214,591
Messages
6,120,427
Members
448,961
Latest member
nzskater

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