Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have the attached document, I want my text box to show a certain figure but due to the granularity of the data I am unable to get this.
Any ideas?
Thanks
Please try
='Value'&chr(10)&chr(10)&sum(aggr(only(#UnallocatedAmount),%PK))
Could you describe a bit closer how you calculated
302930.76
?
Use this value in your text box
='Value'&chr(10)&chr(10)&sum(Aggr(DISTINCT #UnallocatedAmount, %PK))
let me know
Please try
='Value'&chr(10)&chr(10)&sum(aggr(only(#UnallocatedAmount),%PK))
My bad, I didn't realize this was already mentioned
Maybe another option without the need for advanced aggregation:
=Rangesum(
Sum(#LineValue),
Sum( {<Product = {'NOT APPLICABLE'}>} #UnallocatedAmount)
)