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: 
boryspower
Creator
Creator

Loops problem...

Hello,

I want to create simple report of orders/stock of items, but I have problem with "loops"... Anyone could help me?

I attach screen of the loops and sample file that recreates the problem...

error loading image

BR

Borys

2 Replies
Not applicable

You need to join the tables Order and Order_spec. For instance ...


Order:
LOAD * FROM Order;
Order_spec:
LOAD * FROM Order_spec;
JOIN (Orders) LOAD * RESIDENT Order_spec;


The tables will be joined on field order_id.

Not applicable

As mentioned in the earlier reply, please find the attached file which contain joined Order and Order_spec table.