Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I cant seem to get the range selection right when i replace values with variables in a sum({}value) expression.
I've attached a example. The "Sales - Range" needs tweaking to work similar to "Sales - Values" with the difference of being dynamic.
Try this:
=Sum({<RowNumber={"$(='>=' & $(lLimit) & '<=' & $(uLimit))"}>}Sales)
May be as below:
=SUM({<RowNumber={">=$('lLimit')<=$('uLimit')"}>}Sales)
Try this:
=Sum({<RowNumber={"$(='>=' & $(lLimit) & '<=' & $(uLimit))"}>}Sales)
Thank you !!