Ajuda del Collabora Office 22.05
Especifica que el Collabora Office Basic admetrà algunes instruccions, funcions i objectes VBA.
La compatibilitat amb VBA no és total, però admet una gran part dels patrons d'ús comú.
When VBA support is enabled, Collabora Office Basic function arguments and return values are the same as their VBA functions counterparts. When the support is disabled, Collabora Office Basic functions may accept arguments and return values different of their VBA counterparts.
Option VBASupport {1|0}
1: Activa la compatibilitat VBA al Collabora Office
0: Desactiva la compatibilitat VBA
Option VBASupport 1
Sub ExampleVBA
Dim sVar As Single
sVar = Worksheets("Sheet1").Range("A1")
Print sVar
End Sub