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

Indirect set analysis problem

Hi,

I went over the various indirect set analysis links, but still to fail to achieve the following:

I have 2 tables with the same attribute (“Period type”) but with different field name for it.

The common field is Family.

Once the user selected a period type (from one table) and a family,

the data from the other table should be linked for the same period type.

In a pivot table I need to display:

- Customer

- Order number,

- Sum of the family balance

The following expression displays only one customer with one order.

SUM({$<OrderDuePeriod=p(Period)>} [Family Balance])

How do I get to see them all?

Thanks in advance!

1 Solution

Accepted Solutions
giakoum
Partner - Master II
Partner - Master II

not sure why you only see one customer. A sample app would help.

Try this :

SUM({$<OrderDuePeriod={"$(=only(Period))"}>} [Family Balance])

View solution in original post

2 Replies
giakoum
Partner - Master II
Partner - Master II

not sure why you only see one customer. A sample app would help.

Try this :

SUM({$<OrderDuePeriod={"$(=only(Period))"}>} [Family Balance])

Not applicable
Author

Thanks!