Forum Discussion
Segregate by month Positive and Negative Client Balance
Hi ruinaldo,
In that case, before creating the calculated table 'Positive & Negative', please create a summarized table like below:
summarize balance table =
SUMMARIZE (
'Client Balance',
'Client Balance'[Number Client],
'Client Balance'[Month],
"Movements", SUM ( 'Client Balance'[Movements of Month] )
)
Then, the rest steps are the same based on above summarized table.
Regards,
Yuliana Gu
Hi,
I have a table of clients movements by month. I don“t need the sum of positive or negative values
I need by month the accumulated values by client. And each month i have client balance positive others negative that i want separate in diferent columns.
Month 1 = positive (650) = acumulated balance of clients 211000500 (500) and 211000700 (150)
Month 2 = positive (350) = acumulated balance of clients 211000500 (200) and 211000700 (150).
negative = acumulated balance of client 211000600 (-100)
Thanks for your help.