Why is my calculated area price always the same as the price?

穿精又带淫゛_ 提交于 2019-12-11 07:05:20

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!