Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 02-21-2019, 03:33 AM
Crillezzz Crillezzz is offline Copy one cell to another every hour Windows 10 Copy one cell to another every hour Office 2007
Novice
Copy one cell to another every hour
 
Join Date: Feb 2019
Posts: 2
Crillezzz is on a distinguished road
Default Copy one cell to another every hour

I have a macro that copies cell A1 to column I every hour.It copies A1 to I2 then A1 again to I3, I4, I5 and so on. But the list is too long. I'm only interested in the last few hours. I want the list to go from I2 to I30. So every time it should copy over a new number, it should delete the first one on I2 and move up the rest. The idea is that I will make a graph of the data.This is how the code looks. But the last code I do not know where it should be.Can anyone help me please?




Sentiment.xlsm

Option Explicit
Public dTime As Date

Sub ValueStore()
Dim dTime As Date
Range("I" & Cells(Rows.Count).Row).End(xlUp).Offset(1, 0).Value = Range("A1").Value
Call StartTimer

End Sub


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

Sub StopTimer()
On Error Resume Next
Application.OnTime dTime, "ValueStore", Schedule:=False
End Sub
__________________________________________________ _____________________________
Private Sub Worksheet_Change(ByVal Target As Range)
Dim NR As Long
If Not Intersect(Target, Range("A1")) Is Nothing Then
NR = Range("I" & Cells(Rows.Count).Row).End(xlUp).Row + 1
Range("I" & NR).Value = Range("A1").Value
If NR > 30 Then Range("I2").Delete xlShiftUp
End If
End Sub
Reply With Quote
 



Similar Threads
Thread Thread Starter Forum Replies Last Post
Copy one cell to another every hour Copy matching data from one report cell to another cell report mbesspiata Excel 9 01-15-2015 01:49 PM
Copy one cell to another every hour Copy Rows down with value from another Cell burlinghamla Excel 1 01-14-2015 06:26 AM
Copy one cell to another every hour keyboard shortcut to copy the url of a cell Aquinax Excel 3 07-15-2014 09:45 AM
Copy one cell to another every hour Copy Paste each cell to a new page Singh_Edm Word 12 01-20-2014 12:55 AM
Can Excel Deduct 30 Minutes from an 8 1/2 Hour Cell? tatihulot Excel 4 05-16-2013 04:30 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 09:03 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft