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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

how to link field in table that are not the same? newbie

Dear All,

sorry for newbie question, but tried to search how to do that with no luck.

I need to create a link between these to table values. I know how to use "AS" command, but when data differs i dont find solution.

thanks.

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

For the table which contains origin....

Remove origin as a field name and use below expression instead...

subfield(origin,',',2) as purchase_line_origin

View solution in original post

3 Replies
MK_QSL
MVP
MVP

For the table which contains origin....

Remove origin as a field name and use below expression instead...

subfield(origin,',',2) as purchase_line_origin

Not applicable
Author

thank you! works brilliant.

Not applicable
Author

Guys, one more interesting thing.

I would like to use conditional conection of data:

Field Origin:

Sometimes it is refering to Stock.Move(table), 1 (value), sometimes to trytonlt_anglosaxon.line_move(table), 1 (value). I would like to connect these values and to reach the value in other tables. For example: If Origin is "stock.move,1" i want to connect to 1 value in Stock Move table, if it is "trytonlt_anglosaxon.line_move,1" I want to connect other table with it's value 1.

selection.tiff

Earlier I was using

subfield(origin,',',2) as [stock.move_value]

and it working great, but only with one type of data. Any ideas?