> I have an application used by both English and European clients. This
> is significant because often when European clients are entering Data
[quoted text clipped - 3 lines]
>
> How should I go about safe-guarding this from happening?
Be sure that the cell is not text then Excel will change it when you open it in the US
Here is a formula to convert the textvalue in I2 to US
=IF(ISERR(I2*1),IF(ISERR("1.2"*1),SUBSTITUTE(SUBSTITUTE(I2,",",""),".",",")*1,SUBSTITUTE(SUBSTITUTE(I2,".",""),",",".")*1),I2*1)

Signature
Regards Ron de Bruin
http://www.rondebruin.nl
> More Info: What I'm looking for is not a way to safe-guard entering
> the info in the TxtBox wrong, but more of a way to convert it if it is
[quoted text clipped - 11 lines]
>>
>> How should I go about safe-guarding this from happening?
Sandy Mann - 31 Oct 2006 22:49 GMT
Ron,
Won't ISERR("1.2"*1) always return FALSE regardless of the entry in I2? At
least it seems to for me. That being the case, may I ask what is its
function in your formula?

Signature
Puzzled
Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings
sandymann2@mailinator.com
Replace@mailinator.com with @tiscali.co.uk
> Be sure that the cell is not text then Excel will change it when you open
> it in the US
[quoted text clipped - 18 lines]
>>>
>>> How should I go about safe-guarding this from happening?
Ron de Bruin - 31 Oct 2006 22:59 GMT
Hi Sandy
"1.2"*1 give a error on my Dutch machine because we use 1,2
This way the If statment know what to do
On my Dutch machine the English text 123.45 will be the value 123,45
On my English machine the Dutch text 123,45 will be value 123.45

Signature
Regards Ron de Bruin
http://www.rondebruin.nl
> Ron,
>
[quoted text clipped - 22 lines]
>>>>
>>>> How should I go about safe-guarding this from happening?
Sandy Mann - 31 Oct 2006 23:48 GMT
Hi Ron,
Ah Yes! I see now - an international formula - clever

Signature
Regards,
Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings
sandymann2@mailinator.com
Replace@mailinator.com with @tiscali.co.uk
> Hi Sandy
>
[quoted text clipped - 3 lines]
> On my Dutch machine the English text 123.45 will be the value 123,45
> On my English machine the Dutch text 123,45 will be value 123.45
Ron de Bruin - 31 Oct 2006 23:59 GMT
Hi Sandy
>an international formula - clever
We (Norman and me) use it in the Beta DataRefiner add-in
http://www.rondebruin.nl/datarefiner.htm

Signature
Regards Ron de Bruin
http://www.rondebruin.nl
> Hi Ron,
>
[quoted text clipped - 7 lines]
>> On my Dutch machine the English text 123.45 will be the value 123,45
>> On my English machine the Dutch text 123,45 will be value 123.45