ziad alsayed
Well-known Member
- Joined
- Jul 17, 2010
- Messages
- 665
dear all
please advise what is gooing wrong with the below code , it is multiplying the content of the cell by itself instead of multiplying it by one.
appreciate any help
please advise what is gooing wrong with the below code , it is multiplying the content of the cell by itself instead of multiplying it by one.
Code:
Range("F2") = "1"
Range("F2").Copy
LR = Range("E" & Rows.Count).End(xlUp).Row
Range("E2:E" & LR).Select
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlMultiply, _
SkipBlanks:=False, Transpose:=False
Application.CutCopyMode = False
Range("E2").Select
appreciate any help