Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, I have a table like this
NAME AREA SALES SALES% AVG % Sales per area
name1 area1 10 sum(sales)/sum( total <NAME> sales) ???????
name2 area1 10
name3 area2 20
name4 area3 30
name5 area3 5
name6 area3 10
How can I calculate the average % sale for Area?
Try this expression
sum(SALES) / sum(total <AREA> SALES)
Sum(sales) /Sum({1} Total sales)
Try this
Avg({<AREA>} SALES_PERCENTAGE)
this is a something that you may want to confirm with your users