Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
nareshthavidishetty
Creator III
Creator III

Set analysis

I have a field Application status which defines Approved,Declined and processed and application count

May i know how to write an set analysis to get number of applications Approved,Declined and processed.

3 Replies
sunny_talwar

May be this:

Dimension: Applications

Expression: Count({<[Application Status] = {'Approved', 'Declined', 'Processed'}>} Applications)

engishfaque
Specialist III
Specialist III

Dear Naresh,

Here are the expressions,

Expression 1 : Count Approved Application

Count({<[Application status] = {'Approved'}>} applications)

Expression 2 : Count Declined Application

Count({<[Application status] = {'Declined'}>} applications)

Expression 3 : Count Processed Application

Count({<[Application status] = {'Processed'}>} applications)

Kind regards,

Ishfaque Ahmed

jagan
Luminary Alumni
Luminary Alumni

HI,

Try like this

Dimension: Applications

Expression: Count(Applications)

Or if you want to calculate it individually then use below expressions

Approved Applications Expression: Count({<[Application Status] = {'Approved'}>} Applications)

Declined Applications Expression: Count({<[Application Status] = {'Declined'}>} Applications)

Processed Applications Expression: Count({<[Application Status] = {'Processed'}>} Applications)


Hope this helps you.

Regards,

Jagan.