Hi
I have formula that works in excel but doesn't work in vba.
Formula: =A2 & " - " &D2
VBA:
With .Range("AC2:AC" & lr) .Formula = "=A2 & " - " &D2"
.Value = .Value
End With
It gives me error - Run Time Error, Type Mismatch
Please help how to fix
Regards
Bill