I am using the following code to determine a cell address in a Do Loop:
oActiveCell = ThisComponent.getCurrentSelection()
oConv = ThisComponent.createInstance(“com.sun.star.table.CellAddressConversion”)
oConv.Address = oActiveCell.getCellAddress
On the first use the code within the loop it works but on the second use I get the errorr “Property or method not found: getCellAddress”
What do I have to do to make the code work within the loop?