views:

194

answers:

1

Is there a way with Excel 9.0 Object Library to get a cell coordinate (from a range or cell) "Excel style" for example: A1 or C4 instead of [1,1] and [4,3]?

+1  A: 

Use the Address property.

string addr = range.get_Address(Type.Missing, Type.Missing, 
    Excel.XlReferenceStyle.xlA1, Type.Missing, Type.Missing);
Tmdean
Thanks a lot that's exactly what I was looking for!
Mike