How to log daily data into a descending column

KayZee08

New Member
Joined
Dec 20, 2012
Messages
2
I have a spreadsheet that I am using for budgeting and I want to be able to track my savings by logging data from one cell.

If cell A1 represented my savings I want that copied to B1 then the next day when A1 changes the new value would be copied to B2 and so on.

Any way that I have tried so far B1 always gets overwritten when the new value comes along.

Thanks for your help!!

KayZee08
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Welcome to MrExcel.

What triggers A1 to be changed? What is the value in this cell being fed from?

Matty
 
Upvote 0
I found a macro for a crude version of what i was wanting but the only problem is that A1 is a sum of 3 other cells (chequing account, etc) and therefore changes when any of the other cells change, and the macro i found only works if A1 is manually changed. Instead of running daily.

The Macro I am currently using is :

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$1" Then Sheets("Budget Forecast").Range("B" & Rows.Count).End(xlUp).Offset(1) = Target.Value
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,593
Messages
6,125,722
Members
449,255
Latest member
whatdoido

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