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: 
Jacob
Contributor III
Contributor III

How to Group Dimension In Pivot table

Hi ALL,

I want to Create group of dimension form existing dimension filed.

Dim1 is inline table which i have created

Eg.

Dim1DimValue1Value2
Custome GroupA101
 B202
 C303
 D404
 E505
 F606
 G707
 H808
 I909
 J10010
 K11011

 

I want to create group like below

Dim1DimValue1Value2
Custome GroupD404
 E505
 F606
 G707
 H808

 

any one can help

Labels (2)
1 Reply
Lisa_P
Employee
Employee

[Table]:
LOAD * INLINE
[
Dim,Value1,Value2
A,10,1
B,20,2
C,30,3
D,40,4
E,50,5
F,60,6
G,70,7
H,80,8
I,90,9
J,100,10
K,110,11
](delimiter is ',');

Left Join
Load 'Custom group' as Dim1,
Dim,
Value1,
Value2
resident Table
where Dim = 'D' or Dim= 'E' or Dim = 'F' or Dim= 'G' or Dim= 'H';