Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
josephinetedesc
Creator III
Creator III

How to calclulate a value as a percentage of the whole?

Hi All

I would like to do the following

NAMEVALUEPERCENT OF TOTAL
JOHN330%
PAUL2305
GEORGE440%
RINGO110%

I am not getting the correct value with the following

=(Value / Sum({1} Value)

but I get 100% for John, Paul, George and Ringo - rather thanthe 30% etc!

Thank you

Jo

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Try using total, like:

=Sum(Value) / Sum( Total Value)

View solution in original post

2 Replies
tresesco
MVP
MVP

Try using total, like:

=Sum(Value) / Sum( Total Value)

josephinetedesc
Creator III
Creator III
Author

thank you Tresesco B!