When you create a LibreOffice extension, a library is created and stored there, not a Standard macro.
The standard macro in My Macros is from a Calc sheet
= functionName(param)
, you can call it, but you can’t call the one in the library.
I would like to create a function as an extension and be able to distribute it.
It seems to me that I have to write the code in Python instead of BASIC.
Is there a better way?
https://extensions.libreoffice.org/en/extensions/show/27434
XLOOKUP used to call the IDL compiler (which comes with LibreOffice-SDK) to create the interface and implement it in Python.
Does this mean that it cannot be used in BASIC? ?