cancel
Showing results for 
Search instead for 
Did you mean: 

Webi Number formats based on the User Locale

Former Member
0 Kudos

Hi,


I would like to change the number format of one of my measure objects based on the user locale. But for the rest of them, there will be no change. Do we have specific number formats based on the Locale?


Thanks,

Ram

Accepted Solutions (0)

Answers (1)

Answers (1)

amitrathi239
Active Contributor
0 Kudos

Hi,

if you know the user locale then you can achieve by If else statement.

=If(GetLocale()="en_US") Then FormatNumber([Margin];"0000") elseIf(GetLocale()="en_US") Then FormatNumber([Margin];"0000")

Amit