Hi all,
I'm trying to use VBA to insert the formula below into a cell but I always get a runtime error 1004.
What am I doing wrong?
Thank you in advance!
I'm trying to use VBA to insert the formula below into a cell but I always get a runtime error 1004.
Code:
Sub Fill_Formulas()
ThisWorkbook.Worksheets(4).Range("D2").Formula = "=IFERROR(VLOOKUP($A$2;'[Daily Tracker.xlsx]Info'!$A:$I;2;FALSE);"")"
End Sub
What am I doing wrong?
Thank you in advance!