Go Back   English Forum Switzerland > Help & tips > Other/general  
Reply
 
Thread Tools Display Modes
  #1  
Old 12.01.2010, 10:37
Forum Veteran
 
Join Date: Oct 2007
Location: Ticino & London
Posts: 2,040
Groaned at 173 Times in 93 Posts
Thanked 1,143 Times in 630 Posts
Cashboy has a reputation beyond reputeCashboy has a reputation beyond reputeCashboy has a reputation beyond reputeCashboy has a reputation beyond repute
Microsoft Excel

I am a high user of Microsoft Excel.

I have noticed that when I open Excel on a computer in Switzerland in say Italian the formulas that one enters in a cell is nothing like that of the UK; for example =SUM(D14) in UK but something like =SOMME(D1;D4).
I would expect German anf French to also be different.

I would appreciate to know how one changes Excel to understand English formulas if I am working on an Italian Workbook and then possibly to change it back to Italain (or whatever language after).
Reply With Quote
  #2  
Old 12.01.2010, 10:42
Traubert's Avatar
Forum Veteran
 
Join Date: Nov 2008
Location: Zurich
Posts: 1,194
Groaned at 13 Times in 11 Posts
Thanked 2,443 Times in 853 Posts
Traubert has a reputation beyond reputeTraubert has a reputation beyond reputeTraubert has a reputation beyond reputeTraubert has a reputation beyond reputeTraubert has a reputation beyond reputeTraubert has a reputation beyond repute
Re: Microsoft Excel

If you don't know to use support.microsoft.com or google for this, then you may be in some trouble.

workbook.formulalanguage property default is English, you can change it.
Reply With Quote
  #3  
Old 12.01.2010, 10:43
Forum Veteran
 
Join Date: Jul 2007
Location: Vaud
Posts: 2,459
Groaned at 175 Times in 122 Posts
Thanked 4,947 Times in 1,902 Posts
Mikers has a reputation beyond reputeMikers has a reputation beyond reputeMikers has a reputation beyond reputeMikers has a reputation beyond reputeMikers has a reputation beyond reputeMikers has a reputation beyond repute
Re: Microsoft Excel

Quote:
View Post
I am a high user of Microsoft Excel.

I have noticed that when I open Excel on a computer in Switzerland in say Italian the formulas that one enters in a cell is nothing like that of the UK; for example =SUM(D14) in UK but something like =SOMME(D1;D4).
I would expect German anf French to also be different.

I would appreciate to know how one changes Excel to understand English formulas if I am working on an Italian Workbook and then possibly to change it back to Italain (or whatever language after).

http://office.microsoft.com/en-us/ex...447901033.aspx
Reply With Quote
  #4  
Old 12.01.2010, 10:46
Member
 
Join Date: Oct 2009
Location: lausanne
Posts: 164
Groaned at 6 Times in 1 Post
Thanked 197 Times in 57 Posts
Soixante_neuf has earned the respect of manySoixante_neuf has earned the respect of manySoixante_neuf has earned the respect of many
Re: Microsoft Excel

I don't think it's as easy as finding the right box to tick. I imagine that the formulas come with the language version of the software.

However there is a long-winded cheat. The base language (i.e. visual basic) is always in english. So if you are Excel-savvy then open the VB editor window (or record a macro and then edit it..) and type the formula you want in english, and when it writes it to the cell, it'll be translated.

e.g. you want sum (A1:A3) in cell A4
worksheets(1).range("A4").formula="=Sum(A1:A3)"

When it writes A4 will now say Somme(A1:A3) in French. I used this a lot last year, it's obviously a royal pain in the arse and is just a translator; eventually you get used to the formulas you use often.
Reply With Quote
This user would like to thank Soixante_neuf for this useful post:
  #5  
Old 12.01.2010, 11:02
Forum Veteran
 
Join Date: Oct 2007
Location: Ticino & London
Posts: 2,040
Groaned at 173 Times in 93 Posts
Thanked 1,143 Times in 630 Posts
Cashboy has a reputation beyond reputeCashboy has a reputation beyond reputeCashboy has a reputation beyond reputeCashboy has a reputation beyond repute
Re: Microsoft Excel

Quote:
View Post
I don't think it's as easy as finding the right box to tick. I imagine that the formulas come with the language version of the software.

However there is a long-winded cheat. The base language (i.e. visual basic) is always in english. So if you are Excel-savvy then open the VB editor window (or record a macro and then edit it..) and type the formula you want in english, and when it writes it to the cell, it'll be translated.

e.g. you want sum (A1:A3) in cell A4
worksheets(1).range("A4").formula="=Sum(A1:A3)"

When it writes A4 will now say Somme(A1:A3) in French. I used this a lot last year, it's obviously a royal pain in the arse and is just a translator; eventually you get used to the formulas you use often.
Cheers for that.

It is just so annoying because you just automatically write the code in the cell and get crap and you end up writing in freehand a piece a piece of paper a list of the equivalents but once you get to long formulas with lookups and if statments where you use a comma and they use a semicolon etc.

I am so glad that VB and VBA is written in English as I generally write a lock of VB macros. In fact I bet when you were like me and could not write the code; you recorded a macro on a spread sheet and then edited and cut and paced the code into your VB code modules
__________________
I do not have friends..........I have contingent liabilities
Reply With Quote
This user would like to thank Cashboy for this useful post:
  #6  
Old 12.01.2010, 11:16
Member
 
Join Date: Oct 2009
Location: lausanne
Posts: 164
Groaned at 6 Times in 1 Post
Thanked 197 Times in 57 Posts
Soixante_neuf has earned the respect of manySoixante_neuf has earned the respect of manySoixante_neuf has earned the respect of many
Re: Microsoft Excel

Quote:
View Post
Cheers for that.

It is just so annoying because you just automatically write the code in the cell and get crap and you end up writing in freehand a piece a piece of paper a list of the equivalents but once you get to long formulas with lookups and if statments where you use a comma and they use a semicolon etc.
Don't get me started on the comma, semicolon thing. Bane. of. my. life!

That is, until i found that those things are actually specified on a windows level rather than in Excel...if you want to make friends, add a bit of code that changes all regional settings on the computer (date, comma, currency, thousand seperators etc) when you open the worksheet, then share the document with all your work mates. Happy days. Finally you can discuss a number and be sure what is a decimal point and what is punctuation!

Quote:
View Post
Cheers for that.

I am so glad that VB and VBA is written in English as I generally write a lock of VB macros. In fact I bet when you were like me and could not write the code; you recorded a macro on a spread sheet and then edited and cut and paced the code into your VB code modules
****! that would be the way, just write and save a new formula for each of your favourites in the language you want....man alive, 18 months too late!

Last edited by vwild1; 13.04.2010 at 21:52. Reason: merged 2 successive posts into 1
Reply With Quote
  #7  
Old 12.01.2010, 11:23
Forum Veteran
 
Join Date: Oct 2007
Location: Ticino & London
Posts: 2,040
Groaned at 173 Times in 93 Posts
Thanked 1,143 Times in 630 Posts
Cashboy has a reputation beyond reputeCashboy has a reputation beyond reputeCashboy has a reputation beyond reputeCashboy has a reputation beyond repute
Re: Microsoft Excel

Quote:
View Post
Don't get me started on the comma, semicolon thing. Bane. of. my. life!

That is, until i found that those things are actually specified on a windows level rather than in Excel...if you want to make friends, add a bit of code that changes all regional settings on the computer (date, comma, currency, thousand seperators etc) when you open the worksheet, then share the document with all your work mates. Happy days. Finally you can discuss a number and be sure what is a decimal point and what is punctuation!
So what are you saying here.
Are you saying write some VB code that on opening the workbook specifies the format of the cells for the dates and number formats so that who ever in whatever langauge reads how it is in their language?
Reply With Quote
  #8  
Old 13.01.2010, 09:39
Member
 
Join Date: Oct 2009
Location: lausanne
Posts: 164
Groaned at 6 Times in 1 Post
Thanked 197 Times in 57 Posts
Soixante_neuf has earned the respect of manySoixante_neuf has earned the respect of manySoixante_neuf has earned the respect of many
Re: Microsoft Excel

Quote:
View Post
So what are you saying here.
Are you saying write some VB code that on opening the workbook specifies the format of the cells for the dates and number formats so that who ever in whatever langauge reads how it is in their language?
I wrote that yesterday and i'm sure that a few years ago i had something that could do that, as i remember the complaints. Typically i can't find it anywhere now...

But in a nutshell, yes, i think it is possible. Either that, or i'm doing sepia-tinted nostalgic improvement of the past. About Excel. That would be incredibly sad!

I'll try and dig it up later today
Reply With Quote
Reply




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
looking for Excel course in English needcaffein Other/general 5 16.02.2011 18:04


All times are GMT +2. The time now is 16:15.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2023, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0