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

How to combine 2 values in dimension

Hi All,

I want add 2 values into single value in dimension.

highst_1.png

1) Here 5 values(EAST,North,South,Unknown,West) are there but i want add 'Unknown' and 'EAST' into  single value like 'EAST'  then sum of sales also automatically show single value right.how to combine

2) How to display Highest value in sum(sales) and corresponding Region also.

     i am using Aggr() it show only highest value but not Region 

i attache QVW file also

please give reply...

Thanks

1 Solution

Accepted Solutions
Anonymous
Not applicable

Best is to do it in the script:

Directory;

LOAD if(Region='Unknown','EAST', Region) as Region ,

     sales

FROM

(ooxml, embedded labels, table is Sheet1);

View solution in original post

4 Replies
sunny_talwar

I think there is no data in your attached app. Can you reload and repost your app?

Anonymous
Not applicable

Best is to do it in the script:

Directory;

LOAD if(Region='Unknown','EAST', Region) as Region ,

     sales

FROM

(ooxml, embedded labels, table is Sheet1);

ramrongala
Contributor II
Contributor II
Author

Ok Bro

ramrongala
Contributor II
Contributor II
Author

Thanks...working fine