View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
muddan madhu muddan madhu is offline
external usenet poster
 
Posts: 747
Default What to do to run macro on sheet1 to sheet10

try this

Sub all_sheet()
Dim ws As Workbook
For x = 1 To Worksheets.Count
Sheets(x).Select
'your code........
Next
End Sub




On Oct 17, 3:53*pm, Harshad wrote:
I have macro, which i want to run on sheet1 to sheet10 by one go.