Ok, i have done it the hard way by a macro for each sheet.
But i have a max on 3 other sheets (Not Yet Created) that i need the cell
E2 to have 7 days added to also.
I want to add a step to the below code for each sheet, that checks to see if
that sheets exists 1st.
If not then exits sub.
~~~~~~~~~~~~~~~~~~~
Sub Sheet15UpdateDate()
Sheet15.Select ' <=================== How do i check to see if this is a
sheet or not 1st ???
Range("E2").Activate
If Range("E2").Value <> "" Then
activecell.FormulaR1C1 = [E2] + 7
End If
Sheet4.Select
End Sub
~~~~~~~~~~~~~~~~~~
--
Regards
|