Command Translator

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I am using English commands to program Excel-Access etc., but unfortunately my office xp pro.is a german version, because of my location. Do I have to use MS Office 2000 command translator for this problem or is there any new solutions for MS Office XP?

Regards

M. Onat Ozdemiroglu
 
VBA operates in English in all versions (xl97 and later).

--
Regards,
Tom Ogilvy

M. Onat Ozdemiroglu said:
Hi,

I am using English commands to program Excel-Access etc., but
unfortunately my office xp pro.is a german version, because of my location.
Do I have to use MS Office 2000 command translator for this problem or is
there any new solutions for MS Office XP?
 
General rule :

All excel files will produce same results opened in whichever version.

Exceptions.. HERE we go:

worksheet =>
avoid using functions from analysis toolpak.
these will NOT translate automatically.

avoid using functions with "hardcoded" string arguments like the CELL()
function. = ZELLE("datei",a1)

if you cant avoid them use =ZELLE("filename",a1)..
(but is you'd do it from VBA you'll need to use
.Formula = "=CELL(""filename"",a1)



For VBA:
in principle NEVER use the 'local' properties and methods:
e.g. use .FORMULA (but avoid FORMULALOCAL)

Be carefull with conversion of dates and non integer numbers.




--
keepITcool
| www.XLsupport.com | keepITcool chello nl | amsterdam


M. Onat Ozdemiroglu wrote :
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top