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

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.

Forum statistics

Threads
1,215,168
Messages
6,123,402
Members
449,098
Latest member
ArturS75

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