Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Please bear with the question: Using Excel 2002 w/SP/3 and Windows XP w/SP2.
I have two columns: 1) A2...A137 are daily dates. 2) B2...B137 are cells that are filled in (one cell) each day and contain my weight. In Cell J37 I want to have the data in the cell to the right of the current day displayed automatically as each day changes. How do I reference the data in Column B to do this? Thanks, Docktondad |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One way:
=INDIRECT("B" & MATCH(TODAY(),A:A)) "Docktondad" wrote in message ... Please bear with the question: Using Excel 2002 w/SP/3 and Windows XP w/SP2. I have two columns: 1) A2...A137 are daily dates. 2) B2...B137 are cells that are filled in (one cell) each day and contain my weight. In Cell J37 I want to have the data in the cell to the right of the current day displayed automatically as each day changes. How do I reference the data in Column B to do this? Thanks, Docktondad |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
not sure what you mean by "as each day changes" Are you entering a date in a
cell and want to display the weight from that date? If so, that is a vlookup command. "Docktondad" wrote: Please bear with the question: Using Excel 2002 w/SP/3 and Windows XP w/SP2. I have two columns: 1) A2...A137 are daily dates. 2) B2...B137 are cells that are filled in (one cell) each day and contain my weight. In Cell J37 I want to have the data in the cell to the right of the current day displayed automatically as each day changes. How do I reference the data in Column B to do this? Thanks, Docktondad |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If todays date is the last date entered and your dates are in sequential
ascending order: =LOOKUP(TODAY(),A2:A137,B2:B137) If there might be dates beyond todays date: =INDEX(B2:B137,MATCH(TODAY(),A2:A137,0)) Biff "Docktondad" wrote in message ... Please bear with the question: Using Excel 2002 w/SP/3 and Windows XP w/SP2. I have two columns: 1) A2...A137 are daily dates. 2) B2...B137 are cells that are filled in (one cell) each day and contain my weight. In Cell J37 I want to have the data in the cell to the right of the current day displayed automatically as each day changes. How do I reference the data in Column B to do this? Thanks, Docktondad |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
you should be able to do that nesting a couple of functions
Offset & Match assuming Dates are in column A and Weight in Column B this formula will work. =OFFSET(A2:A35,(MATCH(E2,A2:A35,0)-1),1,1) Where A2:A35 is the date range Where E2 is the Date you are interested in retreving weight data for. you could clean it up a little using named ranges, =OFFSET(Date_Range,(MATCH(Date,Date_Range,0)-1),1,1) Where Date_Range is the date range Where Date is the Date you are interested in retreving weight data for. next step would be to use variable named ranges but that is a different conversation. hope this helps -- Jeff "Docktondad" wrote: Please bear with the question: Using Excel 2002 w/SP/3 and Windows XP w/SP2. I have two columns: 1) A2...A137 are daily dates. 2) B2...B137 are cells that are filled in (one cell) each day and contain my weight. In Cell J37 I want to have the data in the cell to the right of the current day displayed automatically as each day changes. How do I reference the data in Column B to do this? Thanks, Docktondad |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks to all for the suggestions. PCLIVE had the answer I was looking for.
He read my mind perfectly. Docktondad "Docktondad" wrote: Please bear with the question: Using Excel 2002 w/SP/3 and Windows XP w/SP2. I have two columns: 1) A2...A137 are daily dates. 2) B2...B137 are cells that are filled in (one cell) each day and contain my weight. In Cell J37 I want to have the data in the cell to the right of the current day displayed automatically as each day changes. How do I reference the data in Column B to do this? Thanks, Docktondad |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
conditional formatting for cell date to equal today's date | Excel Worksheet Functions | |||
text and today's date in 1 cell | Excel Discussion (Misc queries) | |||
to enter today's date if a cell is blank | Excel Worksheet Functions | |||
Fill cell with today's date | Excel Discussion (Misc queries) | |||
find cell with today's date | Excel Discussion (Misc queries) |