range,cell refrence

G

Guest

Using excel 2007. I have a range consisting of 12 cells (monthly total
results) in a column that progressively changes in value as the year
progresses. I want to automatically reference ONLY the cell corresponding to
the current month. The following month the cell in the range changes. Is
there a worksheet function that will give me the results of the monthly cell?
 
T

T. Valko

I'm assuming with 12 cells that the 1st cell represents January and the 12th
cells represents December.

To return the value of the cell that corresponds to the current month
(assume the range of cells is A1:A12):

=INDEX(A1:A12,MONTH(TODAY()))
 
G

Guest

Thank You, I've not had occasion to use the Index function before. That
worked great.
--
Seamen, with their inherent sense of order, service, and discipline, should
really be running the world.


T. Valko said:
I'm assuming with 12 cells that the 1st cell represents January and the 12th
cells represents December.

To return the value of the cell that corresponds to the current month
(assume the range of cells is A1:A12):

=INDEX(A1:A12,MONTH(TODAY()))
 
T

T. Valko

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


buzz said:
Thank You, I've not had occasion to use the Index function before. That
worked great.
 

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

Top