Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
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)