cell data capture

glennon67

New Member
Joined
May 29, 2018
Messages
1
I have a workbook that captures certain data throughout the day. I'd like to capture the data in cells a1 and b1 on sheet 5 every minute starting at 09:30:00 am and ending at 16:00:00 pm for purposes of creating a daily chart. This data can be posted in cells c1:c?? and d1:d??. I currently run the below in this workbook.

Private Sub Workbook_BeforeClose(Cancel As Boolean)
On Error Resume Next
Application.OnTime dTime, "SortItOut", , False
On Error GoTo 0
End Sub


Private Sub Workbook_Open()
dTime = Time + TimeValue("00:00:05")
Application.OnTime dTime, "SortItOut"
End Sub

Public dTime As Date


Sub SortItOut()
dTime = Time + TimeValue("00:00:05")
Application.OnTime dTime, "SortItOut"
On Error Resume Next
With Sheet20.UsedRange
.Sort Key1:=.Range("B2"), Order1:=xlAscending, Header:=xlYes
.Columns.AutoFit
End With

With Sheet25.UsedRange
.Sort Key1:=.Range("B2"), Order1:=xlAscending, Header:=xlYes
.Columns.AutoFit
End With




With Sheet58.UsedRange
.Sort Key1:=.Range("B2"), Order1:=xlAscending, Header:=xlYes
.Columns.AutoFit
End With


On Error GoTo 0
End Sub


Any help is greatly appreciated.

Gerard
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes

Forum statistics

Threads
1,215,373
Messages
6,124,559
Members
449,171
Latest member
jominadeo

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