Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Expression for less than and equal to function
I want a logical condition as
If Sum of Amount is less than zero then zero else sum of Amount
Column name as Amt
thanks
Vikas
RangeMax( Sum(Amt), 0)
If you want to understand using IF, try like:
If( Sum(Amt)<0, 0, Sum(Amt) )
If ( <condition>, what when true, what when false)
RangeMax( Sum(Amt), 0)
If you want to understand using IF, try like:
If( Sum(Amt)<0, 0, Sum(Amt) )
If ( <condition>, what when true, what when false)
Or
If(Sum(Amount) < 0, 0, Sum(Amount))
Thanks This worked