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

Getting value from a different Object

All,

I'm trying to see if you can get value from a different Table.

For example: For table 2 - I want field Company and Date, as well "Total" column from  table 1 (not Sum(vaule1,vaule2, vaule3)

Is there expression where you can reference table1 fields/columns?

Table 1:

   

CompanyDateValue1Value2Value3Total
ABC3/1/20161236
XYZ3/1/201678924

Table 2:

   

CompanyDateTotal
ABC3/1/20166
XYZ3/1/2016

24

Thanks,

Frank

1 Solution

Accepted Solutions
maxgro
MVP
MVP

try with

RangeSum(Value1, Value2, Value3)

int the 2nd table

View solution in original post

3 Replies
maxgro
MVP
MVP

try with

RangeSum(Value1, Value2, Value3)

int the 2nd table

Anonymous
Not applicable
Author

Thanks.. It works.

Anonymous
Not applicable
Author

how do rangsum a column or Label name? Thanks