Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
capriconuser
Creator
Creator

Min values in qlikview table

HI 

 

i have a data like this . I will attach data also 

capriconuser_0-1598948776545.png

now from that data  i want to show that in the past 10 races, the teams who have low Pen will win the races 

 

 

... 

 

13 Replies
capriconuser
Creator
Creator
Author

okay @Kushal_Chawda then how we can convert this data table into a pie or bar chart?

Kushal_Chawda

@capriconuser  you won't be able to convert to bar or pie. If convert it won't show anything. Somehow we can able to convert it but it won't show the exact values as in table as it will aggregate the data for individual year.

capriconuser
Creator
Creator
Author

@Kushal_Chawda u said i can add Pen column into dimension ... but what is this possible to get values through expression .. like if we do Min or something like that ? actually i want data in graph ..

Kushal_Chawda

try below

 

Data:
LOAD Year, 
     [Race Result], 
     Year&chr(10)&Pen as Key,
     Laps, 
     Pen, 
     Score
FROM
[Book1 (1).xlsx]
(ooxml, embedded labels, table is Sheet1);

 

 

Create bar chart with Dimension Key and below expression

sum(Pen)

Below are the bar graph settings

Annotation 2020-09-02 221024.pngAnnotation 2020-09-02 2210241.png

Here is the bar chart

Annotation 2020-09-02 2210242.png