Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
simonas
Contributor
Contributor

need not to change value

i have formula for calculating :
RangeSum ( Above ( sum( quantity),0,rowno() ) )

i need to make values not change based on date filter.  if i use total or {1} i get wrong values.

Labels (2)
5 Replies
agigliotti
Partner - Champion
Partner - Champion

Hi @simonas ,

You should add date field name in the set analysis as below:

RangeSum ( Above ( sum( {< FieldName= >} quantity ),0,rowno() ) )

Best Regards

simonas
Contributor
Contributor
Author

wrongwrong

 

 

 

not working RangeSum ( Above ( sum( {< FieldName= >} quantity ),0,rowno() ) ), getting values of current year

 

goodgood

simonas
Contributor
Contributor
Author

maybe i use wrong formula, i need to calculate all values always 

vinieme12
Champion III
Champion III

can you post the exact expression you used?

from the expression posted by @agigliotti 

You just need to replace FieldName with your actual field name that needs to be ignored

RangeSum ( Above ( sum( {< Yourdatefieldname= >} quantity ),0,rowno() ) )

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
simonas
Contributor
Contributor
Author

This is original: RangeSum ( Above ( sum(  quantity ),0,rowno() ) ), then i added {<date field>} like @agigliotti  suggested. i did not get result i wanted. 

i need: to calculate all values with condition to add possitve value of previous months. Then i turn on date filter, i lose all possitive values of all month before filter and get only values in range of filter condition.