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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Display value dimension as different value

Hi All, I need to display my records as different value in the dimension of Pivot Table.

For example I have Field A which consist  value 1,2,3,4,5,6,7, and 8. I want to display value 3,4,5 as 'A' in the dimension and the expression will accumulate for value 3,4,5 in dimension value A. How can I do this in Pivot Table.

Thanks

Field AExpress
1Value XXX
2Value XXX
AValue XXX
6Value XXX
7Value XXX
8Value XXX
1 Solution

Accepted Solutions
Digvijay_Singh

Try this -

Map:

Mapping load * inline [

FieldA,Value

3,A

4,A

5,A ];

Load Applymap('Map',FieldA) as FieldA,

  Expression

inline [

FieldA,Expression

1,100

2,100

3,100

4,100

5,100

6,100

7,100

8,100 ];

Capture.JPG

View solution in original post

6 Replies
Digvijay_Singh

Try this -

Map:

Mapping load * inline [

FieldA,Value

3,A

4,A

5,A ];

Load Applymap('Map',FieldA) as FieldA,

  Expression

inline [

FieldA,Expression

1,100

2,100

3,100

4,100

5,100

6,100

7,100

8,100 ];

Capture.JPG

Digvijay_Singh

Front-end based -

Capture.JPG

nagarjuna_kotha
Partner - Specialist II
Partner - Specialist II

Like this?

Check attached How to do it in front end and backend

Hope this may help 🙂

-Nagarjun

el_aprendiz111
Specialist
Specialist

Hi,

MATCH.png

Not applicable
Author

Hi,

Its works. Thanks so much!

Not applicable
Author

Hi,

Its works well. Thank you so much!