Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I am using this expression to get the Total value of the fields but I get 0 value anyway and I want to show the full value, in this case: 2
FieldA has value 2, FieldB is null.
Expression: RangeSum([FieldA]+[FieldB])
FieldA | FieldB | Total |
---|---|---|
2 | 0 |
Is there any trick here? I also tried with sum/count.
sum(FieldA)+sum(FieldB)
hope this helps
Use comma separated two arguments:
RangeSum([FieldA], [FieldB])
This works correctly
This works correctly, cheers guys!