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: 
sanketkhunte
Creator II
Creator II

Inline as a Dimention : which chart type should prefer

Hi Friends,

I have one requirement : to present KPIs against multiple dimentions those are not coming from database but they are valid DIM.

let say I have to present below chart :

-----------------------------------------------------------------------------------

Dimention                                KPI

-----------------------------------------------------------------------------------

Purchase                                   100000

------------------------------------------------------------------------

Sales                                         40000

----------------------------------------------------------------------

Discount                                        400

----------------------------------------------------------------------

in above table chart : 1.Purchase 2. Sales and 3. Discount are not coming from database so i have created inline for populating this values in Qlikview.

How we can present data same like above tabular format in qlikview when dim. are coming from inline.

your solutions really appriciate to us.

Thanks

Sanket

5 Replies
nizamsha
Specialist II
Specialist II

Like this

if(dimension='Purchase',ur Expression,

if(dimension='Sales',ur Sales

if(dimension='Discount',ur Discount)))

manojkulkarni
Partner - Specialist II
Partner - Specialist II

check..

Dimension =ValueList('Purchase', 'Sales','Discount')

Expression As

if(

ValueList('Purchase', 'Sales','Discount')='Purchase',100000,

if(

ValueList('Purchase', 'Sales','Discount')='Sales',40000,

if(

ValueList('Purchase', 'Sales','Discount')='Discount',400

)))

Not applicable

If your INLINE dimensions are connected to the data model. You can use it anywhere.

Can you please attach a sample app.

Thanks,

Angad

sanketkhunte
Creator II
Creator II
Author

Thank you for your input on this.

Here, I have requirement to display all dimentions at a time ; not anyone

Thanks

Sanket

sanketkhunte
Creator II
Creator II
Author

Thank you for your input on this.

Here, I have requirement to display all dimentions at a time ; not anyone

Thanks

Sanket