I'm trying to use the get_range method on an Excel sheet, but when I type 'xlSheet.' I don't see the method in the drop-down. I see Cells, Name, etc. I don't know why.
This is my code:
Thanks for any help!
This is my code:
Code:
Dim workbook As Excel.Workbook = workbooks.Add(Excel.XlWBATemplate.xlWBATWorksheet)
Dim xlSheet As Excel.Worksheet = CType(workbook.ActiveSheet, Excel.Worksheet)
xlSheet.get_Range(.......) 'I CAN'T DO THIS