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: 
bvmike2001
Contributor III
Contributor III

How to start calculate & display KPIs like Installation Rate

Hello,
please, i need some help because i'm a beginner.


So my data model look like this:


- Order_id
- Order_status [Finalized / Canceled / WIP / Non-validated]


I want to calculate and display in a gauge chart let's say the Installation Rate KPI: Amount of orders with Order_status = 'Finalized' / Total amount of orders excluding orders with order_status='Non-validated'

Regards,

Mihai

1 Solution

Accepted Solutions
giakoum
Partner - Master II
Partner - Master II

Count({$<[F2]={"Finalized"}>} F1) / Count({$<[F2] -= {"Non-validated"}>} F1)

View solution in original post

3 Replies
giakoum
Partner - Master II
Partner - Master II

please see attached example :

F1: order_id

F2: order_status

bvmike2001
Contributor III
Contributor III
Author

Many thanks Ioannis!

And how to exclude from the Total amount of orders the orders with Order_status=Unvalidated?

giakoum
Partner - Master II
Partner - Master II

Count({$<[F2]={"Finalized"}>} F1) / Count({$<[F2] -= {"Non-validated"}>} F1)