Create a snapshot of current status of cells daily

AJA1234

New Member
Joined
Aug 25, 2017
Messages
1
Good afternoon everyone. I am trying to find a way to create a daily snapshot of a cell's value in a range to the right of said cell.
Firstly, I have column 'N' whose cells' values I want entered into a cell in the same row to the right in a range which has sequential date header values .
Secondly, I would like to either automatically, or with a button I could press daily, have excel 'lock' those reference driven values into the cells with the current date as the header value.
There is conditional formatting in the 'Timeline' range to give me a visual representation of the daily progress of Column 'N'.
I hope I haven't been too confusing and would appreciate any guidance offered.

Thanks in advance.
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Not entirely clear what you mean by lock or how you want the data stored but something like this might be a starting point, it simply inserts a new column O so you have space to to enter the copied cells from column N then copies them and timestamps it with today's date in O1. If you already have your sequential dates in place it's easy enough to pick them out with an IF statement and avoid inserting a new column you'd simply dump the contents of N under todays date.

Code:
Sub copyColN()Dim FinalRow As Integer
  
Application.ScreenUpdating = False
Application.Calculation = xlCalculateManual


FinalRow = Cells(Rows.Count, "N").End(xlUp).Row


    
    
    Columns("O:O").Insert Shift:=xlToRight
    Range("O2:O" & FinalRow).Value = Range("N2:N" & FinalRow).Value
    Range("O1").Value = Date     'dump todays date in cell header




xit:
Application.ScreenUpdating = True
Application.Calculation = xlCalculationAutomatic


End Sub
 
Upvote 0

Forum statistics

Threads
1,215,749
Messages
6,126,661
Members
449,326
Latest member
asp123

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