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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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

i attache QVW file  and Excel file also

please give reply...

Thanks

1 Solution

Accepted Solutions
vishsaggi
Champion III
Champion III

Try this?

LOAD

IF(Match(Region, 'Unknown'), 'EAST', Region) AS Region,

sales

FROM

(ooxml, embedded labels, table is Sheet1);

View solution in original post

2 Replies
vishsaggi
Champion III
Champion III

Try this?

LOAD

IF(Match(Region, 'Unknown'), 'EAST', Region) AS Region,

sales

FROM

(ooxml, embedded labels, table is Sheet1);

ramrongala
Contributor II
Contributor II
Author

Thanks...working fine