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: 
Anil_Babu_Samineni

Pivot Dimension

Hello,

I am trying to take calculated dimension with exclude values

LOAD * Inline [

  P_Des

  All Plants

  Battice

  Birkeland

  EPAD/Brussels

  GOA

  EPAD

];

Here,

1) I want to exclude All Plants & EPAD

2) Is it possible to move that Total values into Right part with last column. This is Pivot Table only.

- ANIL

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
1 Solution

Accepted Solutions
vinieme12
Champion III
Champion III

sorry wrong app attached earlier

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.

View solution in original post

63 Replies
sunny_talwar

1) I would use set analysis within your expression for exclusion

{<P_Des -= {'All Plants', 'EPAD'}>}

2) Do you want to see the total on the right side?

Anil_Babu_Samineni
Author

Sunny,

1) P_Des is the Dimension. If i apply this on Dimension getting garbage error

2) Yes

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
varshavig12
Specialist
Specialist

Try this:

1. if(P_Des<>'All Plants' or P_Des<>'EPAD', P_Des)

varshavig12
Specialist
Specialist

2.) Not sure, but may be you are searching for this:

qlikview979
Specialist
Specialist

Hi Varsha ,

He want total on right side of the table.

Regards

varshavig12
Specialist
Specialist

Yeah, but he has drag his dimension horizontally.

Hence, thought so!

Anil_Babu_Samineni
Author

If i try this, I don't know one more dimension is added, Like below

First field remover, But, I dont have last value which i tick the Yellow

Vinod.PNG

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
qlikview979
Specialist
Specialist

Hi Anil,

I hope ,may be this is help full to you?

How to get right total in Pivot table?

vinieme12
Champion III
Champion III

or even this

          =if(Wildmatch(P_Des,'All Plants','EPAD')=0,P_Des)

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.