Excel data updation
Closed
prakash
-
Jun 18, 2011 at 10:18 AM
venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 - Jun 19, 2011 at 02:21 AM
venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 - Jun 19, 2011 at 02:21 AM
Related:
- Excel data updation
- Transfer data from one excel worksheet to another automatically - Guide
- Tmobile data check - Guide
- Excel marksheet - Guide
- Number to words in excel - Guide
- Excel free download - Download - Spreadsheets
1 response
venkat1926
Posts
1863
Registration date
Sunday June 14, 2009
Status
Contributor
Last seen
August 7, 2021
811
Jun 19, 2011 at 02:21 AM
Jun 19, 2011 at 02:21 AM
suppose the data is downloaded in row no.1 for A1 to the right every minute
and suppose
the time value for each minute is in A1(If there is change in assumptions modify the event code)
right click sheet tab (where the data is downloaded) click view code.
in the window that comes up copy this event code
the archival is done in sheet2 (if the archival sheet name is different modify the above event code)
when the data is downloaded autoamtically this one row data is copied to sheet 2 after the last previous row. (at the first time it will copied in row 2)
and suppose
the time value for each minute is in A1(If there is change in assumptions modify the event code)
right click sheet tab (where the data is downloaded) click view code.
in the window that comes up copy this event code
Private Sub Worksheet_Change(ByVal Target As Range) If Target.Address <> "$A$1" Then Exit Sub Target.EntireRow.Copy With Worksheets("sheet2") .Cells(Rows.Count, "A").End(xlUp).Offset(1, 0).PasteSpecial End With Application.CutCopyMode = False End Sub
the archival is done in sheet2 (if the archival sheet name is different modify the above event code)
when the data is downloaded autoamtically this one row data is copied to sheet 2 after the last previous row. (at the first time it will copied in row 2)