cwadams1955
Programmer
I have an Access Data Project module that reads an Excel spreadsheet and imports the spreadsheet data into a table. Which column of data is needed is determined by a cell in that column with a diagonal border (representing a slash across the cell), so I need to look at the cell's border linestyle property to determine if I should import that column. Problem is, I have to use late binding because there are at least two or three versions of Excel in use in the company, and I can't find anything that tells how to reference cell properties like borders, etc, when using late binding - the only properties I've been able to reference are Value, Address, and NumberFormat. Anything else I try to use gives an "object does not support this property or method." error. Can anyone tell me how to access these properties, or know of an on-line reference? Thanks.