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: 
sakshikaul
Creator II
Creator II

expression issue

Dear All, I have to write an expression for the following scenario:- I have to write a formula to get percentage for NC'S NC's/Total NC's * 100
1 Solution

Accepted Solutions
lironbaram
Partner - Master III
Partner - Master III

hi 

have you tried : 

(sum(NC) / sum(TOTAL NC))*100

View solution in original post

2 Replies
lironbaram
Partner - Master III
Partner - Master III

hi 

have you tried : 

(sum(NC) / sum(TOTAL NC))*100

petter
Partner - Champion III
Partner - Champion III

It should be something like this if the field is named NC: 

Sum(NC) / Sum(TOTAL NC) * 100

 

The level that the total should be calculated at can be explicitly specified like this if needed:

Sum(TOTAL <USERID, ClusterName> NC)