When B13 is blank (No value, no formula and formatted as General) this code still selects and copies, instead of selecting B12 and copying. Where is my error ?
Code
Windows("Premier Current.xls").Activate
If IsNumeric(Range("B13").Value) Then
Range("B13").Copy
Windows("Premier1").Activate
Range("B12").PasteSpecial Paste:=xlValues, Operation:=xlPasteSpecialOperationAdd
Else
Range("B12").Copy
Windows("Premier1").Activate
Range("B12").PasteSpecial Paste:=xlValues, Operation:=xlPasteSpecialOperationAdd
End If