Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

can any one help me set analysis

sum({$<Date={">=09/01/2012"},Item={'PAN 34g'}>} Units)

i am using this one but not getting any result it is showing me zero value

but when i take out date and sum it for total for ex

=sum({<Item ={'PAN 34g'}>} Units)

thanks in advance

1 Solution

Accepted Solutions
rustyfishbones
Master II
Master II

Here it is


SUM({$<Date ={">$(=Date('09/01/2012'))"},Item={'PAN 34g'}>} Units)

View solution in original post

12 Replies
Clever_Anjos
Employee
Employee

Please check your Date field format

rustyfishbones
Master II
Master II

try this

SUM({$<Date ={"$(=Date('09/01/2012'))"},Item={'PAN 34g'}>} Units)

Not applicable
Author

thanks for your response but it is not working

Not applicable
Author

Thank you for your response

date field format is dd/mm/yyyy which i specified in the expression

Clever_Anjos
Employee
Employee

Is is possible post a sample of your data?

rustyfishbones
Master II
Master II

I am missing < (less than sign), sorry

try this

SUM({$<Date ={"<$(=Date('09/01/2012'))"},Item={'PAN 34g'}>} Units)

Not applicable
Author

thank you

is is giving me value but i wanted to see >= 9/01/2012 where can we give the greater than condition

rustyfishbones
Master II
Master II

Here it is


SUM({$<Date ={">$(=Date('09/01/2012'))"},Item={'PAN 34g'}>} Units)

rustyfishbones
Master II
Master II

please mark if correct