Thread
:
Windows GetOpenFileName Method Workaround for Excel 2011 on MAC
View Single Post
01-23-2015, 04:50 PM
charlesdh
Windows 7 32bit
Office 2010 32bit
Expert
Join Date: Apr 2014
Location: Mississippi
Posts: 382
Hi.
This code should do what you want it checkes to see what the "OS" is.
[code
Sub Test_Me()
Dim TheOS As String
TheOS = Application.OperatingSystem
If Left(TheOS, 7) <> "Windows" Then
Call Your mac code
else
call your windows code
end if
End Sub
charlesdh
View Public Profile
Find all posts by charlesdh