Help is needed very urgently. You need a macro capable of searching and replacing tables. Replacement is necessary for several words at once and on all pages of the book. I found a code that does the search and replace task, but it is very limited, my skills were not enough to make this code suitable. Please, help.
Sub SearchSheet
Dim oSheet
Dim oReplace
Dim nCount
oSheet = ThisComponent.Sheets(0)
oReplace = oSheet.createReplaceDescriptor()
oReplace.setSearchString("Xyzzy")
oReplace.setReplaceString("123")
oReplace.SearchWords = False
nCount = oSheet.replaceAll(oReplace)
MsgBox "Replaces" & nCount
End Sub