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: 
Not applicable

How to create an aggregated column in QlikView ?

I need a aggrgated calculation for a single column in qlikview . Can anyone tell me how do i do that ?

4 Replies
Mark_Little
Luminary
Luminary

Hi,

You would need to Use the AGGR() function in the frontend

like

AGGR(SUM(Sales), SalesPerson)

Or you can make Aggregation tables in the script

Load

     SalesPerson,

     Sum(Sales)

Resident 'SalesTable'

Group By SalesPerson;

Hope this Helps

Mark

jagan
Partner - Champion III
Partner - Champion III

Hi,

Try like this using Sum(), Count(), Avg()

=Sum(Sales)

=Count(TransactionID)

Hope this helps you.

Regards,

Jagan.

Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Sum(MyField) is an aggregation. Count(MyField) is another. What kind of aggregation do you need? And where do you need it? As a value in a textbox? Or as an expression in a chart?


talk is cheap, supply exceeds demand
miguelbraga
Partner - Specialist III
Partner - Specialist III

Hi Ankit,

As Mr. gwassenaar‌ have asked, what is the agregation you need to make? I kindly advise you to ask a clear question and/or specify better your problem, it will help you in the future . So... Can you please elaborate your question with an Excel file with your needs or a QVW sample?

Regards,

MB