Forum Discussion
Anonymous
6 years agoNot applicable
Aggregation problem in calculated column
EDIT: Link to PBIX-file: ShopInfo Hi all! I could use some help wrapping my head around the following issue: I have three tables in my model: They look like: Now I'...
- 6 years agoRight, if you use a measure, you will need to use an aggregation, just use MAX if your output is a table visualization.
If your output that you show is an actual table, you can create a calculated column and not have to use aggregation.
Anonymous
6 years agoNot applicable
Link to PBIX-file: ShopInfo
- Greg_Deckler6 years agoCommunity ChampionMeasure = MAX('Products'[YearlySales]) / MAX('ShopInfo'[Employees])As I stated in my original reply, you need to use a measure and when using a measure, you need to use an aggregation and I indicated that you should likely go with MAX.PBIX is attached but it is updated to latest version.