I’m moving my Excel VBA code to LibreOffice Cal and was wondering if anyone could advise me if there is any advantage in using Cal version 7.2 vs version 6.1 which I have installed already.
An example of some of the beginning statements in my code are as follows:
-
Dim sheet2 As Worksheet, n As String, Cell, num, tmp, rngDest As Range, i As Integer
-
Dim rng As Range, tmp, i As Long
-
Const NUMBER_TO_CHANGE As Long = 9
-
Const NUMBER_TO_CHANGE As Long = 20
-
Dim SearchRange As Range, _
-
Dim r As Range, rg As Range, X As String
-
Application.ScreenUpdating = False
My second request is if anyone could assist me with the following code problem. It works in VBA but not in Cal. I need to start working on this stuff!!
Sub ClearCells1()
Range(“B2:B11,E2:E11,H2:H11,I2:I11,J2:J11”).ClearContents
End Sub
Thank-you.