Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
capriconuser
Creator
Creator

Sum on the bases of specific column and filter date

  i am  trying to sum on the specific field on the specific filter through back-end 

 

i try this but did not work m

if(sum(ENDORESMENTDATE > '01-01-2018',IPPREMIUM)) AS VALUEEE

hwo i do this 

 

Labels (2)
2 Replies
Edvin
Creator
Creator

Try this:

sum(if(ENDORESMENTDATE>'01-01-2018',IPPREMIUM)) as VALUEEE

 

If it's not working, check the ENDORSEMENTDATE date format is it actually DD-MM-YYYY

shiveshsingh
Master
Master

May be this?

if(ENDORESMENTDATE > '01-01-2018',Sum(IPPREMIUM))