i want to refer to a range in a different book, that is defined from this works:
Workbooks(macrofilename).Sheets(IDsheetname).Activate
lookRange = Range(Cells(startrow, startcol), Cells(rows, cols))
colno = Application.Match(myName, lookRange, 0)
but i don't want to activate the other sheet so i tried it to add the workbook&sheet to the range definition:
lookRange = Workbooks(filename).Sheets(sheetname).Range(Cells(startrow, startcol), Sheets(Cells(rows, cols))
sadly, this results in in a 1004 error (application-defined or object-defined error).
any ideas how to solve this?
thanx, Gijs.