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

Dimension as Filter in only one graphic

Hello,

I'd like to have a workspace with two grapics (pivot tables):

1) Shows all revenue by project

2) Shows revenue by projects, but only those aded in the last month, based on a colum on theoriginal data that informs in the data is "NEW" or "OLD".

I'm trying with a simple "DATA="NEW"" dimension, but it doesn't work.

How can I do that?

Thanks!

4 Replies
Not applicable
Author

try like that

DATA='NEW'

Not applicable
Author

Hun, I was mistaking ' with ".

I might be missing some theory, but tried using a Conditional on Dimensioon and on Expressions, still not worked.

In the end used an "if" in the expressions

Instead of SUM(REVENUE)

used IF(DATA='NEW',SUM(REVENUE))

Not applicable
Author

Try this

Sum({$<DATA={NEW}>} REVENUE)

jagan
Luminary Alumni
Luminary Alumni

Hi,

If creates the performance issues.  So you can use set analysis

=SUM(<DATA={'NEW'}>}REVENUE)

Hope this helps you.

Regards,

Jagan.