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

How to get total field with auto increment

Hi,

I have a source

Product Price
A100
B250
C150

But i want to display with extra column like this

ProductPriceTotal
A100100
B250350
C150500

How can I get total field by auto increment.

5 Replies
ychaitanya
Creator III
Creator III

Hey Amar

Use this

aggr( rangesum(above( sum(Price), 0, rowno() )), Price) 

Digvijay_Singh

Looks like duplicate thread!!

MarcoWedel

Qrishna
Master
Master

Check this out.1.PNG

shiveshsingh
Master
Master

Use this as expression

RangeSum(above(sum(Price),0,RowNo()))