Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a balance sheet dashboard with all accounting statements and a initial balance of each G/L account.
When I filter dates, I want the set analysis to sum initial balance + all statements BEFORE maximum selected date.
[Data] is the date field and to get maximum date I use
=Max(Data)
This is working fine.
But to sum values
<= Max(Data)
in set analysis is not working.
It should be something like below formula as I saw in many related discussions, but it is not working.
=initial_balance+sum({<Data={"<=$(=max(Data))"}>} AMOUNT)
Any idea on how to correctly write this set analysis sentence?
May be you need to use only less than < instead of less than equal to <=
=RangeSum(initial_balance, Sum({<Data={"<$(=max(Data))"}>} AMOUNT))
Also do you make any selection in date related field which might contradict your set analysis? like selection in Month field? If you do, then you need to ignore that in your set analysis
May be you need to use only less than < instead of less than equal to <=
=RangeSum(initial_balance, Sum({<Data={"<$(=max(Data))"}>} AMOUNT))
Also do you make any selection in date related field which might contradict your set analysis? like selection in Month field? If you do, then you need to ignore that in your set analysis
It worked. In fact, error was in contradicted selection. Once we ignored it, correct sum showed up.
Thanks