routine Formula editing

chaju

Board Regular
Joined
Mar 24, 2002
Messages
82
Many thanks to those who can help this one!

Suppose
cell D2 contains formula '=Guardian!B59'
cell B8 contains formula '=Guardian!B59'
cell B21 contains formula '=Wealth!B59'
cell B35 contains formula '=Growth!B59'

Each day I have to go into these formula and Add 1 to them so that thay become

cell D2 contains formula '=Guardian!B60'
cell B8 contains formula '=Guardian!B60'
cell B21 contains formula '=Wealth!B60'
cell B35 contains formula '=Growth!B60'

The following day B61 so on so on..
Is there a quicker way to do so?
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
You should set a cell value (in my function it is A1) as the starting date of this process.

I set A1 = 03/26/2002 (as starting date)

Then i used this formulas:

D2 --> =INDIRECT("Guardian!B"&(59+DAYS360(A1,NOW())))
B8 --> =INDIRECT("Guardian!B" & (59+DAYS360(A1,NOW())))
B21--> =INDIRECT("Wealth!B"& (59+DAYS360(A1,NOW())))
B35--> =INDIRECT("Growth!B"& (59+DAYS360(A1,NOW())))


I hope this is what you need.

(Edited because function parameter seperator in my Excel Version)
_________________
Oz ~ TheWordExpert
This message was edited by smozgur on 2002-03-26 02:02
 
Upvote 0

Forum statistics

Threads
1,213,546
Messages
6,114,253
Members
448,556
Latest member
peterhess2002

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