Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi There,
i want to calculate an Average Prive per Item per Customer.
But i am Stuck 😞
The average is not correct, if there are 2 Prices per customer. I Played around with aggr and total, but it is not working.
I want the average of the average per customer (see attached Excel) as an result. But it is not Working 😞
I rellay would appriciate some help!
Thanks
Fabian
I think this is what you need
=Avg(Aggr(Avg(Price),Customer))
But for some reason, you excluded Customer I for your expected output. If you want to exclude I, you can try this
=Avg({<Customer -= {'I'}>}Aggr(Avg(Price),Customer))
I think this is what you need
=Avg(Aggr(Avg(Price),Customer))
But for some reason, you excluded Customer I for your expected output. If you want to exclude I, you can try this
=Avg({<Customer -= {'I'}>}Aggr(Avg(Price),Customer))
Thanks @sunny_talwar, it works.
I did not want to exclude I, i made mistake 😞