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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
srujanaponnuru
Creator
Creator

filter

Hi,

I have the following data in excel as below:

CategoryMarket Value
Level 1 Assets43395
Level 1 Assets96387
Level 1 Assets44997
Level 2 Assets64799
Level 2 Assets28817
Level 2 Assets78013
Non-Qualifying Assets61553
Non-Qualifying Assets14771
Non-Qualifying Assets79524

i want the pivot table or straight table outpput in qlikview as below:

CategoryMarket Value
Level 1 Assets184779
Level 2 Assets171629
Non-Qualifying Assets155848

Here the market values are total of level 1 assets and total of level 2 assets similarly for Non-qualifying assets.

Please help me out to do this in qlikview scripting or how to write expressions as i am very new to qlikview.

Thanks

Srujana

4 Replies
alexandros17
Partner - Champion III
Partner - Champion III

Load the Excel file then create a pivot, use "category" as dimension and add an expression:

Sum([Market Value])

let me know

Anonymous
Not applicable

Hi,

I hope this can help you (I do this with expression).

Regards.

maxgro
MVP
MVP

1)

first load the data in qlikview

menù --> file --> edit script

use table files button to create the script with the file wizard

2)

reload (ctrl-R)

3)

make the chart

for pivot chart you can use the wizard

menù --> tools --> quick chart wizard --> pivot table -->

choose the first dimension --> category

choose the expression --> sum  Market Value

ramasaisaksoft

Hi Srujan,

In u r pivot table

Dimension : Category

Expression:=aggr(sum([Market Value]),category)

                             or

                            sum([Market Value])