Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
How I can make a cell contact with another cell on another sheet and it will
changes when day changes. example I have cell A1 sheet1 contact with cell A2 sheet 2 and cell A1 sheet 2 is the date when the date change A1 sheet 1 will auto change to B2 sheet 2 and the date = B2 |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Ali,
You could use the CHOOSE function which returns the nth value. For example, =CHOOSE(3, A2, B3, C4, D5, E6) will return A4, the third value in the array {A2, B3, C4, D5, E6}. This works well if the cells are not contiguous, but you are limited to 30 values if I remember well. If your values are in contiguous cells (same column for example), you can use the INDEX function, something like =INDEX(B1:B50, 3) which will retrieve the third cell in the range, i.e. the content of B3. Replace 3 in the formula above with INT(NOW()-DATE(2007, 08,14)) and this way, each day your cell content will display a different value. Stephane. -- Message posted via http://www.officekb.com |
#3
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
You should read
=CHOOSE(3, A2, B3, C4, D5, E6) will return C4 <-- and not A4 !!! Corrected post below: Ali, You could use the CHOOSE function which returns the nth value. For example, =CHOOSE(3, A2, B3, C4, D5, E6) will return C4, the third value in the array {A2, B3, C4, D5, E6}. This works well if the cells are not contiguous, but you are limited to 30 values if I remember well. If your values are in contiguous cells (same column for example), you can use the INDEX function, something like =INDEX(B1:B50, 3) which will retrieve the third cell in the range, i.e. the content of B3. Replace 3 in the formula above with INT(NOW()-DATE(2007, 08,14)) and this way, each day your cell content will display a different value. Stephane. -- Message posted via http://www.officekb.com |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel: match two cells in one sheet to two cells in another and return a third cells value | Excel Worksheet Functions | |||
Setting of input cells as blue font and formula cells as black fon | Excel Discussion (Misc queries) | |||
paste locked cells and unlocked cells in protected sheet | Excel Worksheet Functions | |||
How to use macros to copy a range of cells which can exclude some cells which I didn't want to be copied? | Excel Worksheet Functions | |||
trying to create an (almost) circular formula between cells and data validated cells with lists | Excel Worksheet Functions |