Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Set Analysis function

Hi,

I would like to show the data in the chart as project id wise collected value . So how can i write this in expression using Set Analysis.

which function i need to use?

1 Solution

Accepted Solutions
PrashantSangle

Hi,

take Porject Id as dimension

and Sum(Collected Value) as Expression

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂

View solution in original post

5 Replies
PrashantSangle

Hi,

take Porject Id as dimension

and Sum(Collected Value) as Expression

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
Not applicable
Author

hi ,

Try like this....

aggr(max(Value),projectID)


or


aggr(sum(Value),projectID)


or


aggr(projectID, -Sum(value)))

buzzy996
Master II
Master II

try this,

=sum({$}value)

simsondevadoss
Partner - Creator III
Partner - Creator III

For chart , you can use Project ID as Dimension and Sum(Value) as Expression. Since Qlikview gives only the aggregated output for the dimension

MK_QSL
MVP
MVP

Create a straight Table or Bar/Line Chart

Dimension

[Project ID]

Expression

SUM([Collection Value])