Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi folks,
I have an dax code which is running will in dax editor, the same thing I want to run on my PBI but throwing error
"Calculation error in measure 'Sales[Max GA%]: SummarizeColumns() and AddMissingItems() may not be used in this context"
Dax Editor :
DEFINE
VAR FinalTable =
SUMMARIZECOLUMNS(Sales[YearQtr], Sales[BrandCode Group],
FILTER(KEEPFILTERS(VALUES('Sales'[BrandCode Group])), 'Sales'[BrandCode Group] <> "PCSD"),
"GA_Mix_", 'Sales'[GA Mix%]) ---- Using Measure pre calculated Mix%
VAR TopBrandValue =
TOPN(1, FinalTable, [GA_Mix_], 0)
VAR Result =
SUMMARIZECOLUMNS(
Sales[BrandCode Group], Sales[YearQtr],
TopBrandValue,
"GA_Mix_", 'Sales'[GA Mix%]
)
EVALUATE
GROUPBY(Result, "MinGA_Mix_", MINX(CURRENTGROUP(), [GA_Mix_]))
I want to same dax on PBI.
@Fsciencetech , Try if you can do same with Addcolumns(Summarize in place of summarize columns
Refer for example
Solved: Issue with Bar chart: SummarizeColumns() and AddMi... - Microsoft Power BI Community
also refer
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 36 | |
| 33 | |
| 29 | |
| 26 |
| User | Count |
|---|---|
| 134 | |
| 104 | |
| 63 | |
| 60 | |
| 55 |