Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everybody,
I need your help !
if you look at the example in attachment (Presentation.png)
I would like to analyze the evolution of the amount of the invoices of my customers between two dates.
I would like to display in one table the amount for the two dates (both dates are selected by the user) and also the progress of the payment.
The dimensions used are : dimension "customer contract" (num police) and dimension "bill number" (%Q_NUM).
A customer can have multiple bills.
I would like to have the evolution by contract and also by invoice.
What I have done
For the min date :
=sum(aggr(Sum( {<
DATE_INSERT={'$(=minstring(DATE_INSERT))'}
>} Q_ARRIERE), %Q_NUM))
For the max date :
=sum(aggr(Sum( {<
DATE_INSERT={'$(=maxstring(DATE_INSERT))'}
>} Q_ARRIERE), %Q_NUM))
For comparaison :
=((Column(1)-Column(2))/Column(1))
I am experiencing the following issues :
Can you tell me if my method is good, ?
How to change my code to solve problems ?
Also, what type of graph adapted to this type of analysis i could add ?
Thanks a lot.