My 2 systems are:
Linux Mint and Fedora 40
On both I have Libre-Office version 24.2.4.2
I have some knowledge of C++ and C# (on Windows)
I am trying to develop macros in LibreOffice that will handle some hydraulic calculations for me, if I can get past this very basic issue.
My macro looks like this
REM ------------ mytest
Public Function mytest(A as Double,B as Double) as Double
'Just a test of function
mytest = A * B
End Function
This will not work when I use it folows:
In a cell with two other cells selected aka =mytest(C1:D1) …result is #NAME?
In a cell with two numbers aka =mytest(2,2) …same result of #NAME?
In a cell with two numbers split aka =mytest(2:3) or =mytest(2;3) … again same result
What is wrong or what setting must be changed, as I have seen similar simple examples that will also not work for me.
Thanks
Geurt