F Fan924 Dec 3, 2009 #1 How do I test for excel language version? I would like a macro to read and report on the language version in use.
How do I test for excel language version? I would like a macro to read and report on the language version in use.
F FSt1 Dec 3, 2009 #3 hi you might try something like this.. Sub whatisit() Dim CC As Long CC = Application.International(xlCountryCode) MsgBox CC End Sub also see this site http://support.microsoft.com/default.aspx/kb/213833/en-us regards FSt1
hi you might try something like this.. Sub whatisit() Dim CC As Long CC = Application.International(xlCountryCode) MsgBox CC End Sub also see this site http://support.microsoft.com/default.aspx/kb/213833/en-us regards FSt1
R Ron de Bruin Dec 3, 2009 #4 Hi FSt1 Country code will not always give you the language See the link I posted
F FSt1 Dec 3, 2009 #5 hi thanks. Regards FSt1 Ron de Bruin said: Hi FSt1 Country code will not always give you the language See the link I posted -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm . Click to expand...
hi thanks. Regards FSt1 Ron de Bruin said: Hi FSt1 Country code will not always give you the language See the link I posted -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm . Click to expand...