Yes! A workbook doesn't have a Cells property. It has Worksheets, and each of them has a Cells property. If there's only one sheet in each workbook, you could use
Asset(1).Activesheet.Cells(j, 1)
for example.