Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
A. Toczko
 
Posts: n/a
Default Bilingual workbook problem

I have programmed a worksheet in English, which is being used by someone who
has set his keyboard to French on his pc. The problem here is that I have
formulas which use month names, and on his pc the months show in French, so
the formulas no longer work. When he sends the sheet to me, it shows in
English, and all is well. How do I get around this? Thanks.


  #2   Report Post  
Peo Sjoblom
 
Posts: n/a
Default

A workaround would be to use month names derived from formulas as opposed to
hard coded month names. Can you five an example of a formula and the month
it is referring to

--
Regards,

Peo Sjoblom


"A. Toczko" wrote in message
...
I have programmed a worksheet in English, which is being used by someone
who has set his keyboard to French on his pc. The problem here is that I
have formulas which use month names, and on his pc the months show in
French, so the formulas no longer work. When he sends the sheet to me, it
shows in English, and all is well. How do I get around this? Thanks.


  #3   Report Post  
A. Toczko
 
Posts: n/a
Default

This is the formula I am using:

=SUMPRODUCT(--(Data!$S$2:$S$1415=A6),--(Data!$T$2:$T$1415="C"))
where A6 contains the month name April.

When on the French pc, column S contains various month names, which appear
in French, so when it compares it against A6, which is in English, there is
never a match. On the English pc, all works well of course.

Column S takes the month from another column, showing the month as format
MMMM. Is there a way to lock MMMM into showing English? That would solve
the problem.

Alison

"Peo Sjoblom" wrote in message
...
A workaround would be to use month names derived from formulas as opposed
to hard coded month names. Can you five an example of a formula and the
month it is referring to

--
Regards,

Peo Sjoblom


"A. Toczko" wrote in message
...
I have programmed a worksheet in English, which is being used by someone
who has set his keyboard to French on his pc. The problem here is that I
have formulas which use month names, and on his pc the months show in
French, so the formulas no longer work. When he sends the sheet to me, it
shows in English, and all is well. How do I get around this? Thanks.




  #4   Report Post  
Arvi Laanemets
 
Posts: n/a
Default

Hi

Replace the entry in A6 with a date like 01.04.2005 formatted as custom
"mmmm"
The formula will now be
=SUMPRODUCT(--(Data!$S$2:$S$1415=TEXT(A6,"mmmm")),--(Data!$T$2:$T$1415="C"))


Arvi Laanemets



"A. Toczko" wrote in message
...
This is the formula I am using:

=SUMPRODUCT(--(Data!$S$2:$S$1415=A6),--(Data!$T$2:$T$1415="C"))
where A6 contains the month name April.

When on the French pc, column S contains various month names, which appear
in French, so when it compares it against A6, which is in English, there

is
never a match. On the English pc, all works well of course.

Column S takes the month from another column, showing the month as format
MMMM. Is there a way to lock MMMM into showing English? That would solve
the problem.

Alison

"Peo Sjoblom" wrote in message
...
A workaround would be to use month names derived from formulas as opposed
to hard coded month names. Can you five an example of a formula and the
month it is referring to

--
Regards,

Peo Sjoblom


"A. Toczko" wrote in message
...
I have programmed a worksheet in English, which is being used by someone
who has set his keyboard to French on his pc. The problem here is that

I
have formulas which use month names, and on his pc the months show in
French, so the formulas no longer work. When he sends the sheet to me,

it
shows in English, and all is well. How do I get around this? Thanks.






  #5   Report Post  
Aladin Akyurek
 
Posts: n/a
Default

I'd suggest entering 4/1/05 (1-Apr-05) in A6, that is, the first day
date of the month/year of interest and invoke:

=SUMPRODUCT(--(DATE(YEAR(Data!$S$2:$S$1415),MONTH(Data!$S$2:$S$1 415),1)=A6),--(Data!$T$2:$T$1415="C"))

which would be immediately readable in French.

A. Toczko wrote:
This is the formula I am using:

=SUMPRODUCT(--(Data!$S$2:$S$1415=A6),--(Data!$T$2:$T$1415="C"))
where A6 contains the month name April.

When on the French pc, column S contains various month names, which appear
in French, so when it compares it against A6, which is in English, there is
never a match. On the English pc, all works well of course.

Column S takes the month from another column, showing the month as format
MMMM. Is there a way to lock MMMM into showing English? That would solve
the problem.

Alison

"Peo Sjoblom" wrote in message
...

A workaround would be to use month names derived from formulas as opposed
to hard coded month names. Can you five an example of a formula and the
month it is referring to

--
Regards,

Peo Sjoblom


"A. Toczko" wrote in message
...

I have programmed a worksheet in English, which is being used by someone
who has set his keyboard to French on his pc. The problem here is that I
have formulas which use month names, and on his pc the months show in
French, so the formulas no longer work. When he sends the sheet to me, it
shows in English, and all is well. How do I get around this? Thanks.






  #6   Report Post  
Aladin Akyurek
 
Posts: n/a
Default

Arvi Laanemets wrote:
Hi

Replace the entry in A6 with a date like 01.04.2005 formatted as custom
"mmmm"
The formula will now be
=SUMPRODUCT(--(Data!$S$2:$S$1415=TEXT(A6,"mmmm")),--(Data!$T$2:$T$1415="C"))

[...]

This would work because "month" and "mois" has the same first letter. It
wouldn't if it was "yyyy", for example.
  #7   Report Post  
A. Toczko
 
Posts: n/a
Default

Thank you for your help.

Alison

"Aladin Akyurek" wrote in message
...
I'd suggest entering 4/1/05 (1-Apr-05) in A6, that is, the first day date
of the month/year of interest and invoke:

=SUMPRODUCT(--(DATE(YEAR(Data!$S$2:$S$1415),MONTH(Data!$S$2:$S$1 415),1)=A6),--(Data!$T$2:$T$1415="C"))

which would be immediately readable in French.

A. Toczko wrote:
This is the formula I am using:

=SUMPRODUCT(--(Data!$S$2:$S$1415=A6),--(Data!$T$2:$T$1415="C"))
where A6 contains the month name April.

When on the French pc, column S contains various month names, which
appear in French, so when it compares it against A6, which is in English,
there is never a match. On the English pc, all works well of course.

Column S takes the month from another column, showing the month as format
MMMM. Is there a way to lock MMMM into showing English? That would
solve the problem.

Alison

"Peo Sjoblom" wrote in message
...

A workaround would be to use month names derived from formulas as opposed
to hard coded month names. Can you five an example of a formula and the
month it is referring to

--
Regards,

Peo Sjoblom


"A. Toczko" wrote in message
...

I have programmed a worksheet in English, which is being used by someone
who has set his keyboard to French on his pc. The problem here is that
I have formulas which use month names, and on his pc the months show in
French, so the formulas no longer work. When he sends the sheet to me,
it shows in English, and all is well. How do I get around this?
Thanks.




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem using excel workbook in word mailmerge Ellen Excel Discussion (Misc queries) 3 May 3rd 05 08:04 PM
Problem making versions of a table by changing sourse data in another workbook Dmitry Kopnichev Excel Discussion (Misc queries) 4 April 1st 05 06:44 AM
Problem executing a macro from different workbook where it is Sergio Calleja Excel Discussion (Misc queries) 1 January 17th 05 12:38 PM
Stubborn toolbars in Excel 007 Excel Discussion (Misc queries) 9 December 11th 04 02:02 PM
Problem with shared workbook (history sheet) ACH Excel Worksheet Functions 2 December 9th 04 08:39 PM


All times are GMT +1. The time now is 02:35 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"