Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi guys,
I have tasked to create a pivot table showing sum results by fixed days.
On a column, i have add some fixed days as:
=if(backup_date='31/01/2018' or backup_date = '28/02/2018' or backup_date = '31/03/2018', backup_date)
On a row, for the sum result, i have made a segment for a range of sum result of paid_money as:
=if(aggr(sum([paid_money]),CUST_KEY)<100000000,Dual('<100M',1),
if(aggr(sum(paid_money]),CUST_KEY)<300000000,Dual('100M-300M',2),
if(aggr(sum( [paid_money]),CUST_KEY)<500000000,Dual('300M-500M',3))))
The issue is the result of that segment will sum all the records of all backup_date till backup_date='31/01/2018' then from 31/01 to 28/02 while i only need to calculate exactly the sum of paid_money in each day which i have added to to column like 30/01, 28/02 and .... Can someone guide me to solve this issue.
Thanks in advance!
Thank you for your recommendation but i dont have right to access to the script load so i think will collect the data manually day by day.
Cheers!