I built the following macro to edit cell references in links to an adjacent
page, and it works great- even though it must be updated daily. Basicly, it
changes the link from b to c, then c to d...t to u, etc as the days of the
month go by... It has a shortcoming- on the 20th of the month, with formulas
such as =T532-AT532; the macro changes AT to AU. ( see macro below ) I have
been running a manual find and replace on the single column range effected to
restore the AT from AU. I'm sure there is a better tool for the job, but I'm
no expert....any good ideas? tia, Matt

Range("AT514,AT517:AT602,AT604:AT633").Select
Range("AT604").Activate
ActiveWindow.SmallScroll Down:=-95
Range("AT514,AT517:AT602,AT604:AT633,AV517:AV602,AV571:AV633").Select
Range("AV571").Activate
ActiveWindow.LargeScroll Down:=-3

Range("AT514,AT517:AT602,AT604:AT633,AV517:AV602,AV571:AV633,AY514,AY517:AY602,AY604:AY633" _
).Select
Range("AY604").Activate
ActiveWindow.SmallScroll Down:=-99
Range( _

"AT514,AT517:AT602,AT604:AT633,AV517:AV602,AV571:AV633,AY514,AY517:AY602,AY604:AY633,BA517:BA602,BA571:BA633" _
).Select
Range("BA571").Activate
Selection.Replace What:="T", Replacement:="U", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
End Sub