Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello got a pivot table showing the open amount for each customer
and in another column I want to show the cumulative amount
the cumulative amount I'm using Aggr with sorting but it is not working properly
check attached document and advise please
as the cumulative amount should start with 82.5 and so on...
if I sort by invoice date then documents with the same date will have zero as cumulative amount
please advise
how can I sort first by date and then by doc number in the structured parameters?
May be create a new field in the script using the combination of Invoice Date and Doc No. Something like this
Floor([Due Date]) + [Doc No.]/1E10 as NewField
and then use NewField in your Aggr() function