I am desperately trying to find some VBA code to give me the current Office 365 version and build number, which I will be using further down the line.
I have written the following:
Sub GetVersion()
MsgBox "The current version is " & Application.Version & Application.Build, _
vbOKOnly, "Version"
End Sub
But this only returns:
Version 16.012325
What I am looking for is a way to retrieve the version and full build number (The version number and build number displayed in the File, Account section:
Version 1912 Build 12325.20288
Appreciate the help!