Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Specific Filters

I have a concatenated table - there is a field named "Table" which differentiates between the two table types (Table 1, Table 2 .....)

I have a graph that is using data from all tables but if I apply a date filter I want the selection to affect the information in but "Table 1"

please can you help?

6 Replies
AbhijitBansode
Specialist
Specialist

if you want data from Table 1 only then use set analysis in your expressions like;

sum( { < table= {'Table 1'} > } Sales)

jonathandienst
Partner - Champion III
Partner - Champion III

Qlikview field names are case sensitive. Use

Sum({<Table = {'Table 1'}>} Sales)


HTH

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
Anonymous
Not applicable
Author

sum( { < only(table)= {'Table 1'} > } Sales)

Not applicable
Author

I think this is all along the right lines however maybe I haven't explained properly.

Table 1 has date information, Table 2 does not.

I want to sum up "amount" in table 2 based on the date range selected in table 1.

if(If(Table='Table 1', Sum(Amount 1))>0,sum(Amount 2))

ashishkalia
Partner - Creator
Partner - Creator

Drew Lees ! PFA
this may help

if u want some thing else then this may help.

jonathandienst
Partner - Champion III
Partner - Champion III

Reread your post. Do you want to exclude Table1 if any date is selected? Something like this:

     If(GetSelectedCount(Date) > 0, Sum({<Table-={'Table1'}>} Sales), Sum(Sales))

HTH

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein