Hello there
A few weeks ago i asked a question and a nice member of this website told me about this tool in excel, it solved my problem, but since i cannot send private message, here i'm again.
I have this very long sheet filled with more than 160.000 lines of data ( 2.923 products ), so i what do i need? I'd like to have the number of days at the end of each month and the number of sells of all products, example.
my sheet have 03 columns, a=date,01/01/2020 * b=product,chocolate * c=quantity sold,01 .... the entire sheet is registered with 01 sell per line. So what i tried was this.
The counting repeat to all the new columns that it's created, it's only sum all the 01.
Is there a way to Power Query detect each month and sum in a different column?
Thanks.
A few weeks ago i asked a question and a nice member of this website told me about this tool in excel, it solved my problem, but since i cannot send private message, here i'm again.
I have this very long sheet filled with more than 160.000 lines of data ( 2.923 products ), so i what do i need? I'd like to have the number of days at the end of each month and the number of sells of all products, example.
my sheet have 03 columns, a=date,01/01/2020 * b=product,chocolate * c=quantity sold,01 .... the entire sheet is registered with 01 sell per line. So what i tried was this.
Code:
= Table.Group(#"Tipo Alterado", {"product"}, {{"Count", each List.Sum([quantity sold]), type number}, {"january", each Table.RowCount(_), type number}, {"february", each Table.RowCount(_), type number}, {"march", each Table.RowCount(_), type number}})
The counting repeat to all the new columns that it's created, it's only sum all the 01.
Is there a way to Power Query detect each month and sum in a different column?
Thanks.