Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Currency Symbol on Y axis

Dear Experts,

I am trying to implement a bar chart to have currency symbol for example "$" sign on every Y axis step.

Please suggest how I can achieve above mentioned functionality.

I tried using "Symbol" options on number tab of bar chart but it gives symbols only at top of Y axis(screenshot attached) but not on every step.

Any help in this regard is highly appreciated.

Regards,

RG

11 Replies
Anonymous
Not applicable
Author

Hi Sunny,

I am trying to implement it not able to figure it out but working on the same path you suggested.

Thanks.

Regards,

RG

kkkumar82
Specialist III
Specialist III

Hi sunny,

I have a similar situation now where I want $ for Y axis values but as per now my max value is 800000 but it can also go upto 5000

my idea was to break the Y axis values to a minimum 5 sets like if the value is 4500 I would like to have

1000,2000,3000,4000 and 5000 and for my current value as it is 800000 I would like to show up

200000, 400000,........1000000

I started writing the if conditions in my "Step value" property but ended upto a lot like below,

any simplified idea so that the graphs should give me atleast five steps irrespective of my max value

if(Max(Total Aggr(Rangesum(Above(sum({$<PlanVersion= {'$(vMaxPlan)'}>}[Amount_FCST]/Factor),0,RowNo())),ForecastFormula.DaysinQuarter))/5<10000,

Round(

Max(Total Aggr(Rangesum(Above(sum({$<PlanVersion= {'$(vMaxPlan)'}>}[Amount_FCST]/Factor),0,RowNo())),ForecastFormula.DaysinQuarter))/5,2000),


if(Max(Total Aggr(Rangesum(Above(sum({$<PlanVersion= {'$(vMaxPlan)'}>}[Amount_FCST]/Factor),0,RowNo())),ForecastFormula.DaysinQuarter))/5<20000,

Round(

Max(Total Aggr(Rangesum(Above(sum({$<PlanVersion= {'$(vMaxPlan)'}>}[Amount_FCST]/Factor),0,RowNo())),ForecastFormula.DaysinQuarter))/5,4000),


if(Max(Total Aggr(Rangesum(Above(sum({$<PlanVersion= {'$(vMaxPlan)'}>}[Amount_FCST]/Factor),0,RowNo())),ForecastFormula.DaysinQuarter))/5<30000,

Round(

Max(Total Aggr(Rangesum(Above(sum({$<PlanVersion= {'$(vMaxPlan)'}>}[Amount_FCST]/Factor),0,RowNo())),ForecastFormula.DaysinQuarter))/5,5000),


if(Max(Total Aggr(Rangesum(Above(sum({$<PlanVersion= {'$(vMaxPlan)'}>}[Amount_FCST]/Factor),0,RowNo())),ForecastFormula.DaysinQuarter))/5<40000,

Round(

Max(Total Aggr(Rangesum(Above(sum({$<PlanVersion= {'$(vMaxPlan)'}>}[Amount_FCST]/Factor),0,RowNo())),ForecastFormula.DaysinQuarter))/5,6000),


if(Max(Total Aggr(Rangesum(Above(sum({$<PlanVersion= {'$(vMaxPlan)'}>}[Amount_FCST]/Factor),0,RowNo())),ForecastFormula.DaysinQuarter))/5<50000,

Round(

Max(Total Aggr(Rangesum(Above(sum({$<PlanVersion= {'$(vMaxPlan)'}>}[Amount_FCST]/Factor),0,RowNo())),ForecastFormula.DaysinQuarter))/5,10000),


if(Max(Total Aggr(Rangesum(Above(sum({$<PlanVersion= {'$(vMaxPlan)'}>}[Amount_FCST]/Factor),0,RowNo())),ForecastFormula.DaysinQuarter))/5<100000,

Round(

Max(Total Aggr(Rangesum(Above(sum({$<PlanVersion= {'$(vMaxPlan)'}>}[Amount_FCST]/Factor),0,RowNo())),ForecastFormula.DaysinQuarter))/5,20000)


))))))