Hi, Diane-
Do you mean you'd like to run the same macro on all seven tabs at
once? If yes, then you can modify the macro with a few extra lines of
code to do that.
Your current macro looks like this:
Sub YourMacroName()
{current code}
End Sub
If you'll modify it to read like this:
Sub YourMacroName()
dim Wksht
For Each Wksht In Sheets
If Wksht.Visible = True Then
Sheets(Wksht.Name).Select
{current code}
End If
Next Wksht
End Sub
This runs the same code on all visible worksheets. With a little more
code you can return the cursor to its original starting point (from
where you launched the macro).
Got it, but am a little new to the macro editing portion. Can you be a
little more literal in your direction. One of the tabs is called
Construction ~ can you write specifically the code to include this?
Diane