Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #3  
Old 02-22-2019, 10:47 AM
p45cal's Avatar
p45cal p45cal is offline Copy one cell to another every hour Windows 10 Copy one cell to another every hour Office 2016
Expert
 
Join Date: Apr 2014
Posts: 962
p45cal has a reputation beyond reputep45cal has a reputation beyond reputep45cal has a reputation beyond reputep45cal has a reputation beyond reputep45cal has a reputation beyond reputep45cal has a reputation beyond reputep45cal has a reputation beyond reputep45cal has a reputation beyond reputep45cal has a reputation beyond reputep45cal has a reputation beyond reputep45cal has a reputation beyond repute
Default

try this as the entire Modul1 code:
Code:
Option Explicit
Public dTime As Date

Sub ValueStore()
Dim NR As Long
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
  Sheets("Blad1").ChartObjects("Diagram 4").Chart.FullSeriesCollection(1).Values = "=Blad1!$I$2:$I$30"
End If
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
No Worksheet_Change event needed anywhere.


Your Start Timer button would be better calling ValueStore and not StartTimer, then you don't have to wait an hour for the first new value to appear.
Reply With Quote
 

Thread Tools
Display Modes


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 08:25 PM.


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