Find Excel version in VBA

B

Bernard Liengme

Try this:

Sub whatver()
Dim x
x = Application.Version
MsgBox "Version is " & x
End Sub

Best wishes
 
Top