vba check if 64 bit code example
Example: vba check 32 or 64 bit
Sub TestMe()
#If Win64 Then
MsgBox "You're using 64-bit MSOffice"
#Else
MsgBox "You're using 32-bit MSOffice"
#End If
End Sub
Sub TestMe()
#If Win64 Then
MsgBox "You're using 64-bit MSOffice"
#Else
MsgBox "You're using 32-bit MSOffice"
#End If
End Sub