cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
hogi
Level XIII

Decimal Separator

Is there a command to get the decimal separator defined for the current Jmp installation (on Windows)?

 

Via 

 

Preferences[1] << Get();

I just get the custom locale settings, which are empty if the setting is "default".

Custom Locale Settings(
Decimal Separator(),
Thousands Separator(),
Currency Decimal Separator(),
Currency Thousands Separator()
)

 

hogi_0-1686132246310.png

 

1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User

Re: Decimal Separator

Get Locale Setting might work

Names Default To Here(1);
Get Locale Setting("Decimal Separator");
-Jarmo

View solution in original post

4 REPLIES 4
jthi
Super User

Re: Decimal Separator

Get Locale Setting might work

Names Default To Here(1);
Get Locale Setting("Decimal Separator");
-Jarmo
hogi
Level XIII

Re: Decimal Separator

Thanks, @jthi .
Great! 

 

How did you find it?

hogi_1-1686139640453.png

 

 

hogi
Level XIII

Re: Decimal Separator

Ah, Scripting Index:
:)

hogi_0-1686139474126.png

 

TroyJones
Level I

Re: Decimal Separator

Thank you, you saved my day.

Recommended Articles