http://www.worldlanguage.com/Products/42588.htm
This stuff is expensive:
http://www.worldlanguage.com/Products/42588.htm
but I know that going from the English to the Spanish version of Excel won't change alphanumerics in columns- just character sets, menu words, and help files (ayudame!)!
There are around 15,000 commonly used words in English and I don't think excel packed a spanish translation feature.
Re: http://www.worldlanguage.com/Products/42588.htm
You could try using macro's and a web query to babelfish or dictionary.com .
Cut and paste the following in notepad and save it with an .iqy extension.
---
WEB
1
http://translator.dictionary.com/fcgi/translate?
text=["TEXTSTRING","Enter word in English"]&lp=en_es
Selection=3
Formatting=None
PreFormattedTextToColumns=True
ConsecutiveDelimitersAsOne=True
SingleBlockTextImport=False
DisableDateRecognition=False
---
When you double click on the file, it will open Excel and open a window where it will ask for a cell. Enter the cell you want to take the English source from. Check "Use this value/reference for future refreshes" and "Refresh automatically when cell value changes"
You could now create a macro that copies the English text in your table to this cell and take the result back into your table.
Not sure if you need to do this on a regular basis or if it is a one-time effort, but you have to be careful not to abuse it, since you are using (in this case) dictionary.com's resources.
Also this is not very fast since each query takes about 15-20 seconds to complete.
There might be a better solution to the macro, but I can't think of anything right now.
If someone has better idea, please post it.
Richard