Hi,
I have used the following code to force Excel to accept dot as decimal separator.
Im using MS 2003 and it works fine for me.
But Users are u sing MS 2000 and it gives RUn Time Error 438:Object doesn't support this property or method.
How can I resolve it in MS 2000?
Appreciate any help i can get!!
With Application
.DecimalSeparat or = "."
.ThousandsSepar ator = ","
.UseSystemSepar ators = False
End With
I have used the following code to force Excel to accept dot as decimal separator.
Im using MS 2003 and it works fine for me.
But Users are u sing MS 2000 and it gives RUn Time Error 438:Object doesn't support this property or method.
How can I resolve it in MS 2000?
Appreciate any help i can get!!
With Application
.DecimalSeparat or = "."
.ThousandsSepar ator = ","
.UseSystemSepar ators = False
End With
Comment