Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

change currency symbol

Hi Change currency Symbol and money format based on selections made in the currency list box

Currency Amount

USD          100

EUR           200

CAN           300

upon selecting EUR it should show €200 , $100 for USD or $300 for CAN

John

1 Solution

Accepted Solutions
sunny_talwar

Looking for this:

Capture.PNG

Try the this script:

Table:

LOAD * Inline [

Currency, Amount

USD, 100

EUR, 200

CAD, 300

];

Left Join (Table)

LOAD Currency,

    Symbol

FROM

[CS.xlsx]

(ooxml, embedded labels, table is Sheet1);

And create a chart with Currency as dimension and =Dual(Symbol&Amount, Amount) as Expression.

HTH

Best,

Sunny

View solution in original post

1 Reply
sunny_talwar

Looking for this:

Capture.PNG

Try the this script:

Table:

LOAD * Inline [

Currency, Amount

USD, 100

EUR, 200

CAD, 300

];

Left Join (Table)

LOAD Currency,

    Symbol

FROM

[CS.xlsx]

(ooxml, embedded labels, table is Sheet1);

And create a chart with Currency as dimension and =Dual(Symbol&Amount, Amount) as Expression.

HTH

Best,

Sunny