I’m trying to use a filter for an currency field at standard filter in listView page. I have a total amount and I want to look for docs that amount in range from value to another value ( total_amount >= value and total_amount <= value) I want to look for total_amount Between two value given in standard filter like in screen shot AmountRangeFrom and AmoutRangeTo
Hi,
I may not completely comprehend the question however I was wondering if the Filter by , and Save Filter (with name) features on the left had been tried to construct the searches or reports?
I want to do filter of docs with total_amount between two value AmountRangeFrom and AmountRangeTo like for exemple in screen shot total_amount between 400 and 480 (AmountRangeFrom <= total_amount <= AmountRangeTo) in custom script
for exemple
I have two docs with total_amount 370 and 464
I want to look for docs with total_amount>=400 and total_amount <=480 it should give only doc with total_amount 464 but I have a result the two docs because only filter “total_amount” : [“<=”,amountRangeTo] ( total_amount <= 480) work and not “total_amount” : [“>=”,amountRangeFrom] ( total_amount >= 400)
it accept only one for same field total_amount