Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / New Users / December 2004

Tip: Looking for answers? Try searching our database.

Excel Version in VBA

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Jon - 30 Nov 2004 22:15 GMT
Is there a way, using VBA, to determine the version of Excel that is
running?
bigwheel - 30 Nov 2004 22:41 GMT
> Is there a way, using VBA, to determine the version of Excel that is
> running?

This is from the help file ...

MsgBox "Welcome to Microsoft Excel version " & _
   Application.Version & " running on " & _
   Application.OperatingSystem & "!"
Dave Peterson - 30 Nov 2004 22:54 GMT
MsgBox Application.Version

> Is there a way, using VBA, to determine the version of Excel that is
> running?

Signature

Dave Peterson

CLR - 01 Dec 2004 02:20 GMT
Someone in the group gave me this a while back when I had 4 versions of
excel on my computer and couldn't remember which one I had open...........it
puts the "version" in the upper title bar..........

Sub Auto_open()
   With Application
       Select Case Val(.Version)
           Case 10: .Caption = .Name & " 2002"
           Case 9: .Caption = .Name & " 2000"
           Case 8: .Caption = .Name & " 97"
           Case 7: .Caption = .Name & " 95"
       End Select
   End With
End Sub

> Is there a way, using VBA, to determine the version of Excel that is
> running?
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.