store data

  • Thread starter Thread starter matt1978
  • Start date Start date
M

matt1978

hello, i am trying to create a work sheet that does this: once a week
will put in an ammount of hours in cell B1. every time i put a ne
number in B1 i would like it to be recored in D1 then D2 then D3 et
how would i do thi
 
matt1978 said:
hello, i am trying to create a work sheet that does this: once a week i
will put in an ammount of hours in cell B1. every time i put a new
number in B1 i would like it to be recored in D1 then D2 then D3 etc
how would i do this

You would need a macro to accomplish this.
As an alternative, why not enter the data in the next available cell of
column D, and have a formula in B1 to return the last entry in column D?
=INDEX(D1:D100,MAX(ROW(D1:D100)*(D1:D100<>"")))
Array-entered (Ctrl+Shift+Enter rather than just Enter)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top