Currently using the following on Windows to get GMT/UTC time but I need a way of doing this on MAC as well. Thanks in advance.
VBA Code:
Function UTC() As Date
Dim dt As Object
Set dt = CreateObject("WbemScripting.SWbemDateTime")
With dt
.SetVarDate Now
UTC = .GetVarDate(False)
End With
'Debug.Print UTC
End Function