I guess the better question - can you get the over...
# suiteanalytics
k
I guess the better question - can you get the overall results of a minimum given a different criteria than the grouped data set.
n
@KevinJ of Kansas we all know it's not possible...but I think I cracked it. Is this what you want?
I think your need is met with MIN ({amount}) OVER(ORDER BY {internalid} ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING)
In my search I had transactions with values of 25014 2130 384 1149 30758
FOr each of the 5 lines the formula returns 384 for the results column. When I removed the 384 line it returned 1149. I'm thinking you can do your comparisons.
I also played with an overall Average. The version I did was compare the transaction amount to the average of all the transactions in my search. I had to calculate my own overall average function as you will see. Maybe you can hack this for your needs
CASE WHEN {amount} > SUM ({amount}) OVER(ORDER BY {internalid} ROWS BETWEEN UNBOUNDED PRECEDING AND  UNBOUNDED FOLLOWING)/COUNT ({amount}) OVER(ORDER BY {internalid} ROWS BETWEEN UNBOUNDED PRECEDING AND  UNBOUNDED FOLLOWING) THEN 'Greater' ELSE 'Other' END
For changing the criteria, I think wrap {amount} in either DECODE or CASE to apply additional criteria.