问题
I'm trying to draw a table with two columns, the avg price on that street and the calculated avg price in that area. (Every area has multiple streets)
On rows I have streets. On the columns I have price and sqmPrice. myArea is a calculated field:
{ INCLUDE [myArea] : AVG([sqmPrice]) }
For some reason these are always the same, I would expect the area-column to always show the same value if the streets were in the same area. With myArea added, for clarity:
回答1:
In this case you will need to used 'FIXED' and amend your calculated field to:
{ FIXED [myArea] : AVG([sqmPrice]) }
来源:https://stackoverflow.com/questions/55581604/why-is-my-calculated-area-price-always-the-same-as-the-price