Google Sheets Script

PC User

New Member
Joined
Dec 11, 2012
Messages
32
I was looking for a way to adapt an Excel VBA script to work on Google Sheets, but I cannot find any explanation about how to do this. Where can I find that information. Here is the VBA script that I'm trying to convert.


Code:
Function Numerology(WhatDate As Variant) As Long
Dim lngLoop As Long
Dim lngSum As Long
Dim strNumber As String
 
    strNumber = Format(WhatDate, "yyyymmdd")
    Do While Len(strNumber) > 1
        lngSum = 0
        For lngLoop = 1 To Len(strNumber)
            lngSum = lngSum + CLng(Mid(strNumber, lngLoop, 1))
        Next lngLoop
        strNumber = CStr(lngSum)
    Loop
    
    Numerology = lngSum
    
End Function
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.

Forum statistics

Threads
1,215,923
Messages
6,127,721
Members
449,399
Latest member
VEVE4014

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top