Hi,
im to macros and this forum im having trouble with copying data from a sheet called "setup" to the same place in 150 other sheets named "sheet1-150"
so far ive got -
the only problem with this is it dose it all in the same sheet i want to copy from "setup" and paste in the 150 others how would i do this ?
thanks in advance
im to macros and this forum im having trouble with copying data from a sheet called "setup" to the same place in 150 other sheets named "sheet1-150"
so far ive got -
Code:
Sub Bookie_names_first()
Range("F1:V1").Select
Selection.Cut
Range("B1").Select
ActiveSheet.Paste
Application.CutCopyMode = False
End Sub
the only problem with this is it dose it all in the same sheet i want to copy from "setup" and paste in the 150 others how would i do this ?
thanks in advance