Thread: Worksheets
View Single Post
  #1   Report Post  
Mark
 
Posts: n/a
Default Worksheets

Hi

If I have the following macro running in worksheet 1.

Option Explicit
Sub RCA()

ActiveSheet.UsedRange
If Range("A1").Value = "" Then
Range("A1").Value = InputBox("Enter starting
value")
Else
Range("A1").SpecialCells
(xlCellTypeLastCell).Offset(1, 0).Value =
Application.WorksheetFunction.Max(Range("A:A")) + 1
End If
End Sub

How can I adjust the macro to run in worksheet 2 & 3. If
I want worksheet 2 to start with PCI1 then PCI2 and so on
and then worksheet 3 to start with PCICR1 then PCICR2.

Thanks

Mark