Hey there!
I’m trying to find a way to make my spreadsheets a bit more readable. Right now I have cells which contain lots of computational complexity and which are really unreadable and ugly. I would like to do something very simple and completely safe as a function that I can reference from my spreadsheet. Image something like this:
Function Foo(x)
Foo = (12 * x) + 9
End Function
I.e., inherently safe, nothing possibly malicious about it. However, as soon as I embed any macro, obviously I’ll run into the macro warnings of LibreOffice (and Excel for that matter) which will make users not want to turn them on (rightfully so) and then the document not to work as intended. Is there a way where I can access a limited subset of macros (e.g., nothing unsafe like file access, etc) and then have those embedded macros (or user-defined functions) always work for any security setting?
Thanks!