Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
Fsciencetech
Helper III
Helper III

Dax Query

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.

1 REPLY 1
amitchandak
Super User
Super User

@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

Power Pivot Principles: The A to Z of DAX Functions - ADDMISSINGITEMS < Article < Blog | SumProduct ...

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.