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

set analysis with date

Hi Experts,

Can any one please help me on below requirement.

I need to count the numbers when Create > DueDate and [String]='Authorised' and [Item Field] ='Staus' in KPi

Please help me to write the expression.


Thanks in advance.

1 Solution

Accepted Solutions
Anonymous
Not applicable

Hi Bhavani,

Capture.PNG

Try this file.

View solution in original post

4 Replies
vishalarote
Partner - Creator II
Partner - Creator II

Try this hope so it will works

Count(<{Create=">DueDate"},{[Item New String]='Authorised'},{[Item Field] ='Staus'}>IssueNo)

sasiparupudi1
Master III
Master III

Count(if(

(Date#(Created,'DD/MM/YYYY') >Date#(DueDate,'DD/MM/YYYY'))AND [Item New String]='Authorised' AND[Item Field] ='Staus',IssueNo))

jonathandienst
Partner - Champion III
Partner - Champion III

How about this?

=Sum({<[Item New String] = {'Authorised'}, [Item Field] = {'status'} >} -(Create > DueDate))


*Assumes that Create and DueDate are normal Qlikview numerical date values.

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

Hi Bhavani,

Capture.PNG

Try this file.