Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
kiranb13
Contributor III
Contributor III

Qlikview RangeSum function

Hi,

Can anyone help me in solving the below expression ?

RangeSum(Above(Sum((Sum (EST_Automate_TC)+Sum (EST_Manual_TC))/(networkdays([Analysis end Date Planned],[Test Completion date])), 0, RowNo())))

I need the below expression to be put under Rangesum function.

(Sum (EST_Automate_TC)+Sum (EST_Manual_TC))/(networkdays([Analysis end Date Planned],[Test Completion date])

2 Replies
pradosh_thakur
Master II
Master II

What is the reason for using rangesum in (Sum (EST_Automate_TC)+Sum (EST_Manual_TC))/(networkdays([Analysis end Date Planned],[Test Completion date]) ??

Learning never stops.
sunny_talwar

You have an extra Sum in there... try this

RangeSum(Above((Sum(EST_Automate_TC) + Sum(EST_Manual_TC))/(NetWorkDays([Analysis end Date Planned],[Test Completion date])), 0, RowNo()))