I am having 2 workbooks (Lookup and Destination) and trying to retrieve values from a defined name range in the Lookup workbook.
......
Set rng = Range(Cells(15, 3), Cells(863, 12)) 'C15:L863
wbkLookup.Names.Add Name:="LookupAreaDK", RefersTo:=rng
......
colDest.Formula = "=VLOOKUP(" & colLookup.Address(False, False) & ", LookupAreaDK ,10,0)"
But I've got #NAME? as returned values. What is wrong with the syntax? Could anyone help? Thanks.