Hi,
For VBA/6/S purposes, the worksheet.cells property is similar to the worksheet.range property in that they both return a reference to a range object. (There is no Cell object).
The following are both the equivalent of each other:
Code:
Excel.Application.Workbooks("MyWorkbook.xls").Worksheets("Sheet1").Range("A1").Value = "hello"
Excel.Application.Workbooks("MyWorkbook.xls").Worksheets("Sheet1").Cells(1,1).Value = "hello"
The worksheet.cells property is particular useful when you need the column reference enumerated (1 instead of "A"), such as in a For.. Next loop.
Hope that helps...