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: 
Anonymous
Not applicable

Return the value of an expression from one column to an other.

Hello to all,
how do I find the value calculated by an expression contained in the previous column to the current one:

example:

Pivot Table:


Code
Field2 (expression)
Field3
code123410calculated value of Field2 (=10)


The result of the Field2 is given by an expression (Result = 10)

My goal is not to have to return the expression in Field3 but only the result of the expression of Field2. Is there a way to do this?

Thank you all.

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Manual

Give Field2(expression) a label like say

      EXP2

And then you can reference it another expression as say

      EXP2 + 10

Best Regards,     Bill

View solution in original post

3 Replies
MayilVahanan

Hi

Try like this

=Column(1)

or

= [Expression Label] // Column1 expression label

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Anonymous
Not applicable
Author

Manual

Give Field2(expression) a label like say

      EXP2

And then you can reference it another expression as say

      EXP2 + 10

Best Regards,     Bill

Anonymous
Not applicable
Author

Thank you so much for your help.

Bye