Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

link of two tables of facts: circular loop

Dear Friends,

I Modify my answer

I have 2 tables for budget

1. BUDGAGE: Year / Employee / Sales

2. BUDGET: date / Material group / Sales

error loading image

I have a problem of circular loop. I can't solve the problem

Can you help me??

gennaro

17 Replies
pover
Luminary Alumni
Luminary Alumni

Rename the columns of the Invoice and Order table so that the names of the corresponding columns are the same and then concatenate the Invoice and Order tables into one large fact tables and add an additional column to identify the type of transaction per row. For example,

Load 'Order' as Transaction_Type,
O_Society as Society,
...
From Orders;

Concatenate

Load 'Invoice' as Transaction_Type,
I_Society as Society,
....
From Invoices;

Regards.

Not applicable
Author

I was hoping we could do differently!

thanks a lot

regards

Not applicable
Author

Hi friend,

Can I concatenate two tables if the structure is not equal?

in table ORDER there are OPEN_QTY and OPEN_VALUE that there aren't in table INVOICE

regards

gauravkhare
Creator II
Creator II

using qualify and unqualify will also help in eliminating the loop.

gauravkhare
Creator II
Creator II

Try this instead of concatenating perform a left/right join. It will be more beneficial rather than concatenating the tables as this help in taking only matching fields rather than fetching and joining both the tables.

Not applicable
Author

First concatenate the two table as suggested by Karl Pover and create one new table. Then use left join using any unque key in the main table for balance fields.

With regards,

Vineet Agarwal

pover
Luminary Alumni
Luminary Alumni

Yes, you could do a join or a table that's called a link table, but consider these points:

1. A concatenate function is faster then a join since a join has to evaluate which rows have corresponding values. Concatenation is even faster when all the columns are same, but there is no problem concatenating columns that aren't the same. It just fills the column with null in the other table.

2. Using concatenate takes advantage of QlikView's column-based compression that only saves only once a value that is repeated in the same column.

3. You can do some crazy data model, but a star model (ie.one fact table with multiple dimension tables) is easier to understand and reports are calculated faster with a star model than if you use a link table or any other complicated data model.

4. More time might be needed to develop the first concatenations at first, but it is easy to maintain.

5. Reload time will increase, but it should not increase by much.

6. Avoid creating 2 different columns (eg. o_customer, i_customer) with the same information that you have to link manually with an action in the interfase.

Regards.

Not applicable
Author

thanks Vineet

can you take me an example of left join for balance fields?

thanks

gennaro

Not applicable
Author

in this moment I have a beatiful star!

but I have a problem with date in table of budget

can you take me an example of a table with calendar??

thanks a lot!!

regards