Formula Incompatibilities Between US and Japanese Versions of Excel

StevenHB

New Member
Joined
Oct 15, 2009
Messages
8
I'm responsible for creating a number of Excel-based tools for use by co-workers, most of whom are based in the US. There's one in Japan, however, who periodically experiences tool problems because of differences between the US and Japanese versions of Excel. Most recently, there was a formula that used the Datevalue and Weekday functions that failed. I don't know what caused the failure.

Can anyone provide me with some guidance on what tends to be problematic between the two versions? I've Googled and not found anything helpful.
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Dates predominantly - a string which can be evaluated as a DATE on one locale might not be on another, eg:

=DATEVALUE("September 23, 2010")

would return a Date Serial on a client running US regional settings but would return an error value on a client running UK regional settings

On a related note - you would also experience issues were you to use variable identifiers in terms of constants, eg:

=TEXT(A1,"dd-mmm")

Though the function name & delimiter will translate as necessary the constants within the function would not - and so the above applied to a client running say a French regional settings would fail given dd-mmm are not the correct identifiers.

In short - though there are ways around some of these issues it can be difficult to create something that will work universally - esp. when it comes to date string conversions.

Another area which can be affected is where formulae are designed to work off the format of another cell though this practice is rare.

The above are just a few examples that come to mind.
 
Last edited:
Upvote 0
Thank you. I took a guess and switched from using datevalue() to date(). I learned late last night from the user that his change was successful.

I appreciate the lesson.
 
Upvote 0

Forum statistics

Threads
1,213,556
Messages
6,114,284
Members
448,562
Latest member
Flashbond

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top