Hi.
i got this code:
the VB debug me at "Ccell.Select". i just need to select it from ther i can get it on.PHP Code:
Sub A()
Dim ws As Worksheet
Dim Ccell As Range
Set Ccell = Application.InputBox("בחר תא אותו תרצה להעתיק בכל הגליונות:", "בחירת תא", "A1", Type:=8)
For Each ws In ActiveWorkbook.Worksheets
If ws.Name <> "1" Then
ws.Activate
Ccell.Select
Selection.Copy
Sheet1.Select
ActiveCell.Offset(1, 0).PasteSpecial
End If
Next ws
End Sub
thx :]
Bookmarks