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

Show only data which changed today

Hello,

I have a data set like this :

Date

Brands

07-07-2014Lenovo
07-07-2014Amazon
07-07-2014Samsung
07-07-2014Whirlpool
08-07-2014Lenovo
08-07-2014Amazon
08-07-2014Samsung
08-07-2014Whirlpool
08-07-2014Apple

I want to have a list which shows only the brands which are newly added today (08-07-2014).

The result I expected is :

Brands
Apple

Should I use set analysis or can I use another function ?

I tried above(), but I only get the 'brand' above the one that I selected and not the brand from yesterday.

Thank you.

1 Solution

Accepted Solutions
sasikanth
Master
Master

hi

try some thing like below

Aggr(if(date=Today(),brand),brand)

View solution in original post

3 Replies
sasikanth
Master
Master

hi

try some thing like below

Aggr(if(date=Today(),brand),brand)

alexandros17
Partner - Champion III
Partner - Champion III

Try this formula as dimension in a chart (and add an expression with value = 1)

If(min(date)=max(date) and  date=today(), Brands, Null())

let me know

Not applicable
Author

Thank you, it works !