Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
CVR
Creator
Creator

Currency units formatting

Hi,

I want to know if there is any chance in QlikView to display currency formatting on the dashboard based on a country selection in drop down or something?

Eg:  USA: 100.00   (There is a dot after 100)

         Mexico : 100,00 ( There is a coma after 100)

Both the values are same.

Thanks in Advance

1 Solution

Accepted Solutions
tamilarasu
Champion
Champion

Hello Arjun,

Check Settu's reply in the below link.

https://community.qlik.com/thread/224024#1077812

View solution in original post

4 Replies
devarasu07
Master II
Master II

what is the usage of this kind requirement? not clear

also have tried this way

if(Country='USA', Num(CCY,'#,##0.00')

,Num(CCY,'###0,00'))

vamsee
Specialist
Specialist

Hi Arjun,

To achieve this you have to create a table (either inline or excel) with three columns and join it to FACT table using currency column / Country column.

CountryCurrencyFormat
USUSD$#,##0.00;($#,##0.00)
FranceEUR€#,##0.00;(€#,##0.00)

In all the expressions of the charts in UI use the following code.

Num(EXPRESSION,Only( Format))

In the number section use expression default.

NOTE: As you want to give the user an ability to see data in two currencies you have to convert the data using an exchange rate back end. Doing this in the charts might cause performance issues.
vamsee
Specialist
Specialist

Hello,

Reminder to please mark the correct answer or helpful.

Qlik Community Tip: Marking Replies as Correct or Helpful

Thanks.

tamilarasu
Champion
Champion

Hello Arjun,

Check Settu's reply in the below link.

https://community.qlik.com/thread/224024#1077812