Version: 7.1.4.2 (x64) / LibreOffice Community
Build ID: a529a4fab45b75fefc5b6226684193eb000654f6
CPU threads: 8; OS: Windows 6.1 Service Pack 1 Build 7601; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL
I found the following code and applied it to what I am doing, and it works great with one exception. The code shows sheet name and currently selected cell on all sheets, except for the first one, where it shows only the cell coordinates. It is by design, or is it a bug?
Sub Main
dim oActiveCell as object
dim oConv as object
oActiveCell = ThisComponent.getCurrentSelection()
oConv = ThisComponent.createInstance("com.sun.star.table.CellAddressConversion")
oConv.Address = oActiveCell.getCellAddress
msgbox oConv.UserInterfaceRepresentation
End Sub
Thank you in adnvace for all your help.