Fix incorrect matrix totals in Power BI

Fix Incorrect Matrix Totals in Power BI: A Practical How To Guide

If you work with Power BI, you’ve likely encountered the frustrating issue of incorrect or broken totals and subtotals in matrix visuals—especially when using custom DAX measures. This is a common challenge for Power BI users and often arises when your calculated measures work correctly for individual data rows but fail at the total or subtotal levels. Let’s explore practical techniques to fix incorrect matrix totals in Power BI using advanced DAX patterns, focusing on context evaluation, virtual tables, and the power of SWITCH(TRUE()) logic.

Fix incorrect matrix totals in Power BI: Mastering DAX for Accurate Totals in Your Reports

Fix incorrect matrix totals in Power BI

Why Do Matrix Totals Break in Power BI?

Matrix and table visuals in Power BI aggregate underlying data for totals and subtotals based on the context visible to DAX at each level. Custom measures that depend on row-level context may deliver accurate results for detail rows, but when Power BI computes grand totals, it often loses necessary filters or context, leading to blanks, incorrect sums, or illogical values.

Key causes for broken matrix totals include:

  • DAX measures relying on filters that aren’t present in the total row context.

  • Calculations designed for granular data that don’t make sense when rolled up.

  • Power BI’s automatic aggregation applying logic that doesn’t match business requirements.

Diagnosing and Understanding Matrix Context

Before constructing a fix, it’s vital to analyze how context changes at each level in a matrix visual:

  • Base rows: Both row and column context are present.

  • Subtotals (row or column): Only one of the two contexts is available.

  • Grand totals: Neither row nor column context exists.

A proven method for determining this context is using DAX’s HASONEVALUE function to check for the presence of filters on each axis.

Using SWITCH(TRUE()) for Totals Logic

The core solution involves writing a DAX measure using the SWITCH(TRUE()) construct. This allows you to specify different calculation paths for each possible context combination:

  1. When both row and column context exist (base rows), return your primary measure.

  2. When only row or only column context exists (subtotals), iterate and sum over the filtered context using SUMX and a virtual table.

  3. When neither context exists (grand totals), sum over all possible combinations.

A typical DAX pattern for this uses variables for selected values and a virtual table constructed with CROSSJOIN and ADDCOLUMNS. Here’s what such an approach usually involves:

  • Detect context using HASONEVALUE for each dimension (e.g., month, period).

  • Use SWITCH(TRUE(), …) to order context conditions from most specific (both present) to most general (neither present).

  • For subtotal and grand total contexts, employ SUMX over a virtual table containing all combinations needing to be aggregated.

Best Practices

  • Always write SWITCH(TRUE()) conditions from the most specific to the most general. If you start with general first, your specific logic will never execute due to early exits in SWITCH evaluation.

  • Clearly carve out logic for each level: detail rows, row subtotal, column subtotal, and grand total.

  • Use Tabular Editor or DAX Studio to debug your logic and preview virtual tables to ensure your calculations are on track.

Practical Example Scenario

Suppose you have a Spread Revenue measure that multiplies a simple revenue total by a scaling factor based on lookups. The detail rows work, but all totals show blanks or incorrect values. Using the steps above, you would:

  • Create variables for the selected period and month.

  • Build a virtual matrix table CROSSJOINing all relevant dimensions.

  • Define the measure using SWITCH(TRUE()) and HASONEVALUE checks, aggregating appropriately at each context level.

Voilà—totals and subtotals will now reflect correct logic, tailored to your business needs.

Takeaways

Fixing Power BI matrix totals is fundamentally about understanding DAX row and filter context. By harnessing SWITCH(TRUE()), HASONEVALUE, and virtual tables with SUMX, you gain precision and control over how your visuals aggregate data at every level. Mastering these advanced DAX patterns will eliminate broken totals and elevate the professionalism of your Power BI reports.

Keywords: Power BI, matrix totals, DAX, fixing totals, SWITCH(TRUE()), HASONEVALUE, virtual tables, SUMX, debugging Power BI, Power BI matrix visual, Power BI subtotals, Power BI grand totals, custom DAX measures, Power BI best practices, Tabular Editor, data modeling.


Do You Need Personalized Help and Custom Solutions?

If you get stuck or you would like to explore solutions and automation possibilities, please can reach out to me for help as I do offer consulting services as time allows.  I have over 20+ years’ of expert level experience delivering excellent, custom, strategic solutions in Excel, BI, Access, SharePoint and more. 

I have been called a guru and hero more times than I can count, as I am a great listener and truly have a knack for asking the right questions to understand unique business challenges. I am very passionate about crafting tools and processes that work for users of all levels and experience. 

Reach out today and let’s discuss how I can help you and your business!

I also offer one-on-one tutoring for customized learning and upskilling. Visit my consulting page and send a message if you are interested.

Other Resources

Also, consider checking out some great resources on Amazon Disclosure: this is an affiliate link, so I may earn a small commission if you decide to make a purchase, which will help cover the cost of hosting this website. 

Please bookmark and subscribe!  I am actively working on adding new, relevant content to help others out! Thanks so much!

Subscribe via Email and Stay Up to Date!

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Buy Me A Coffee/Support the Blog 🙂

If I helped you, please consider leaving a tip via PayPal to support the blog! Thanks!!

Thanks so much for supporting my blog and for helping others too!

VBA With Power Query: Maximize Efficiency and Automate Your Data Processes in Excel (with VBA code)

What are the benefits of using VBA with Power Query?

Using VBA in conjunction with Power Query can provide significant benefits, especially when you need to automate complex workflows, integrate data from multiple sources, or perform advanced transformations programmatically. Here are the key benefits of using VBA over just using Power Query directly:

  1. Automation and Repetition:
    • Automation: VBA allows you to automate repetitive tasks, such as importing data from multiple files, applying the same transformations, and saving the results in a consistent format.
    • Scheduling: You can schedule VBA macros to run at specific times, ensuring data is updated automatically.
  2. Customization and Flexibility:
    • Custom Functions: VBA enables you to create custom functions and procedures that can be used within Power Query M code.
    • Dynamic Parameters: You can pass dynamic parameters to Power Query queries using VBA, allowing for more flexible data processing. This alone is a huge benefit!!
  3. Integration with Other Applications:
    • Interoperability: VBA can interact with other applications and services, such as databases, web APIs, and email clients, enhancing the capabilities of Power Query.
    • Data Export: You can use VBA to export data to various formats, such as PDF, CSV, or other Excel files, after it has been processed by Power Query.
  4. Complex Logic and Control:
    • Conditional Logic: VBA provides powerful conditional logic and control structures that can be used to handle complex data processing tasks.
    • Error Handling: You can implement robust error handling in VBA to manage unexpected issues during data processing.
  5. User Interface:
    • Custom UserForms: VBA allows you to create custom user interfaces (UserForms) for data entry and interaction, making it easier for users to perform complex tasks without needing to know Power Query M code.
    • Buttons and Macros: You can add buttons and macros to Excel worksheets to trigger VBA scripts, making it user-friendly.
  6. Advanced Data Manipulation:
    • Data Cleaning: VBA can be used for advanced data cleaning tasks, such as removing specific patterns, handling missing data, and normalizing data formats.
    • Data Transformation: VBA can perform complex transformations that might be difficult or impossible to achieve with Power Query alone.
  7. Version Control and Collaboration:
    • Version Control: VBA code can be version-controlled using tools like Git, allowing for better collaboration and tracking changes.
    • Shared Macros: You can share VBA macros with your team, ensuring consistency in data processing workflows. This can be especially helpful for vacation coverage or spreading the workload among multiple team members!
  8. Performance Optimization:
    • Efficiency: For large datasets, VBA can be more efficient in certain scenarios, especially when combined with Power Query for initial data loading and filtering.
    • Resource Management: VBA can manage system resources more effectively, ensuring smooth performance during data processing.

When to Use VBA Over Power Query

  • Complex Workflows: When you need to perform a series of complex transformations and data manipulations that are difficult to achieve with Power Query alone.
  • Integration with Other Systems: When you need to integrate Excel with other applications, databases, or web services.
  • Automated Reporting: When you need to automate the generation of reports and dashboards based on dynamic data sources.
  • Custom User Interfaces: When you need to create custom user interfaces for data entry and interaction.
  • Advanced Error Handling: When you need robust error handling and logging for data processing tasks.

When to Use Power Query Alone

  • Simple Data Transformation: When you need to perform simple data transformations and cleaning tasks.
  • Data Visualization: When you need to create dynamic data visualizations and dashboards.
  • Data Integration: When you need to integrate and combine data from multiple sources without complex logic.
  • Data Refresh: When you need to refresh data regularly from external sources.
  • Data Transformation: Power Query allows for complex data transformations, such as filtering, merging, and aggregating data.
  • Refreshable Data: Data imported using Power Query can be easily refreshed to update with new data.
  • Scalability: Power Query is better suited for larger datasets and more complex data processing tasks.

VBA with Power Query Code Samples with Explanations

Use Case: Importing Data from CSV Files Using Power Query

Power Query is a more advanced and flexible tool for data import and transformation in Excel. It allows for more complex data transformations and can handle larger datasets more efficiently. Here’s how you can use VBA to import a CSV file using VBA with Power Query.


Sub ImportCSVWithPowerQuery()
Dim filePath As String
Dim connName As String

filePath = "C:\Data\sales_data.csv"
connName = "SalesDataConnection"

' Check if the connection already exists and delete it
On Error Resume Next
ThisWorkbook.Queries.Delete connName
On Error GoTo 0

' Create a new Power Query connection
With ThisWorkbook.Queries.Add(Name:=connName, Formula:= _
    "let" & vbCrLf & _
    "    Source = Csv.Document(File.Contents(""" & filePath & """),[Delimiter="","", Columns=11, Encoding=65001, QuoteStyle=QuoteStyle.Csv])," & vbCrLf & _
    "    PromotedHeaders = Table.PromoteHeaders(Source, [PromoteAllScalars=true])" & vbCrLf & _
    "in" & vbCrLf & _
    "    PromotedHeaders")

    ' Load the query into a new worksheet
    With ThisWorkbook.Worksheets.Add
        .Name = "Data"
        .Cells(1, 1).LoadFromText Connection:=connName, Destination:=.Cells(1, 1)
    End With
End With

End Sub

Explanation of Power Query VBA Code

  1. File Path and Connection Name:
    • filePath is the path to your CSV file
    • connName is the name of the Power Query connection.
  2. Delete Existing Connection:
    • The code checks if the connection already exists and deletes it to avoid conflicts.
  3. Create New Power Query Connection:
    • The Queries.Add method creates a new Power Query connection.
    • The Formula parameter specifies the Power Query M code to import and transform the CSV file.
  4. Load Query into Worksheet:
    • A new worksheet is created, and the query is loaded into it using LoadFromText

Use Case: Importing and Transforming Data from an Excel File Using Power Query and VBA

Objective: Import data from a specific worksheet in an Excel file, filter out rows with specific criteria, perform some transformations, and load the cleaned data into a new worksheet.

Preparation:

  1. Prepare the Source Excel File:
    • Ensure your source Excel file is located at a known path, e.g., C:\Data\source_data.xlsx.
    • Ensure the data is in a worksheet named SalesData.
  2. VBA Code to Import and Transform Data Using Power Query:
Sub ImportAndTransformExcelDataWithPowerQuery()
    Dim sourceFilePath As String
    Dim sourceWorkbookName As String
    Dim sourceSheetName As String
    Dim connName As String
    Dim queryName As String
    Dim ws As Worksheet
    
    ' Set file path, workbook name, sheet name, and connection/query names
    sourceFilePath = "C:\Data\source_data.xlsx"
    sourceWorkbookName = "source_data.xlsx"
    sourceSheetName = "SalesData"
    connName = "SourceDataConnection"
    queryName = "TransformedSalesData"
    
    ' Delete existing connection and query if they exist
    On Error Resume Next
    ThisWorkbook.Queries.Delete connName
    ThisWorkbook.Queries.Delete queryName
    On Error GoTo 0
    
    ' Create a new Power Query connection
    ThisWorkbook.Queries.Add Name:=connName, Formula:= _
        "let" & vbCrLf & _
        "    Source = Excel.Workbook(File.Contents(""" & sourceFilePath & """), null, true)," & vbCrLf & _
        "    SalesData_Sheet = Source{[Item=""" & sourceSheetName & """,Kind=""Sheet""]}[Data]" & vbCrLf & _
        "in" & vbCrLf & _
        "    SalesData_Sheet"
    
    ' Create a new Power Query query for transformation
    ThisWorkbook.Queries.Add Name:=queryName, Formula:= _
        "let" & vbCrLf & _
        "    Source = #" & connName & "," & vbCrLf & _
        "    RemovedTopRows = Table.Skip(Source, 1)," & vbCrLf & _
        "    RemovedDuplicates = Table.Distinct(RemovedTopRows, {" & _
        "        ""Product"", ""Region"", ""Sales"", ""Date"", ""Quantity"", ""Category""})," & vbCrLf & _
        "    FilteredRows = Table.SelectRows(RemovedDuplicates, each [Sales] > 100)," & vbCrLf & _
        "    SortedRows = Table.Sort(FilteredRows,{{""Date"", Order.Ascending}})," & vbCrLf & _
        "    AddedTotalSales = Table.AddColumn(SortedRows, ""TotalSales"", each [Sales] * [Quantity], Int64.Type)" & vbCrLf & _
        "in" & vbCrLf & _
        "    AddedTotalSales"
    
    ' Load the transformed query into a new worksheet
    Set ws = ThisWorkbook.Worksheets.Add
    ws.Name = "TransformedData"
    ws.Cells(1, 1).LoadFromText Connection:=queryName, Destination:=ws.Cells(1, 1)
    
    ' Format the worksheet
    With ws
        .Range("A1").CurrentRegion.AutoFit
        .Range("A1").CurrentRegion.Style = "TableStyleMedium9"
    End With
    
    MsgBox "Data imported and transformed successfully!"
End Sub

Explanation of the VBA Code

  1. Set File Path, Workbook Name, Sheet Name, and Names:
    • sourceFilePath is the path to your source Excel file.
    • sourceWorkbookName is the name of the source Excel file.
    • sourceSheetName is the name of the worksheet containing the data.
    • connName is the name of the initial Power Query connection.
    • queryName is the name of the transformed Power Query query.
  2. Delete Existing Connection and Query:
    • The code checks if the connection and query already exist and deletes them to avoid conflicts.
  3. Create a New Power Query Connection:
    • The Queries.Add method creates a new Power Query connection to import data from the specified worksheet in the Excel file.
    • The Formula parameter specifies the Power Query M code to import the data.
  4. Create a New Power Query Query for Transformation:
    • This query uses the initial connection as its source.
    • It skips the first row (assuming headers).
    • It removes duplicates based on specified columns.
    • It filters rows where Sales is greater than 100.
    • It sorts the filtered rows by Date in ascending order.
    • It adds a new column TotalSales calculated as Sales * Quantity.
  5. Load the Transformed Query into a New Worksheet:
    • A new worksheet is created, and the transformed query is loaded into it using LoadFromText.
  6. Format the Worksheet:
    • The code automatically fits the columns and applies a table style for better readability.

Detailed Steps

  1. Prepare the Source Excel File:
    • Update the path to match your source Excel file.
    • Ensure the data is in a worksheet named SalesData, or update that variable to match your data.
  2. Open VBA Editor:
    • Press Alt + F11 to open the VBA editor.
  3. Insert a New Module:
    • In the VBA editor, go to Insert > Module to create a new module.
  4. Copy and Paste the VBA Code:
    • Copy the above VBA code and paste it into the module.
  5. Run the Macro:
    • Close the VBA editor and return to Excel.
    • Press Alt + F8, select ImportAndTransformExcelDataWithPowerQuery, and click Run.
  6. View the Results:
    • A new worksheet named TransformedData will be created, showing the imported and transformed data.

Additional Tips

  • Customizing Columns:
    • You can customize the column names and the criteria for filtering and sorting based on your specific dataset.
  • Handling Different Workbooks and Sheets:
    • Adjust the sourceFilePath, sourceWorkbookName, and sourceSheetName variables to match your source file and worksheet.
  • Error Handling:
    • Add error handling to manage potential issues, such as file not found or invalid data.

Example: Combining VBA with Power Query for Automation of Reporting

Here’s a more detailed example that combines VBA with Power Query to automate a complex data processing workflow that can automate data reporting from start to finish, including transforming the data and outputting a user-friendly report.

Use Case: Automating Data Import, Transformation, and Reporting

Objective: Import data from multiple Excel files, perform transformations, and generate a consolidated report.

VBA Code:

Sub AutomateDataProcessing()
    Dim folderPath As String
    Dim fileName As String
    Dim connName As String
    Dim queryName As String
    Dim ws As Worksheet
    Dim lastRow As Long
    
    ' Set folder path and connection/query names
    folderPath = "C:\Data\"
    connName = "SourceDataConnection"
    queryName = "TransformedSalesData"
    
    ' Delete existing connection and query if they exist
    On Error Resume Next
    ThisWorkbook.Queries.Delete connName
    ThisWorkbook.Queries.Delete queryName
    On Error GoTo 0
    
    ' Initialize a new worksheet for consolidated data
    Set ws = ThisWorkbook.Worksheets.Add
    ws.Name = "ConsolidatedData"
    ws.Range("A1").Value = "Product"
    ws.Range("B1").Value = "Region"
    ws.Range("C1").Value = "Sales"
    ws.Range("D1").Value = "Date"
    ws.Range("E1").Value = "Quantity"
    ws.Range("F1").Value = "Category"
    ws.Range("G1").Value = "TotalSales"
    
    ' Loop through all Excel files in the folder
    fileName = Dir(folderPath & "*.xlsx")
    Do While fileName <> ""
        ' Create a new Power Query connection for each file
        ThisWorkbook.Queries.Add Name:=connName, Formula:= _
            "let" & vbCrLf & _
            "    Source = Excel.Workbook(File.Contents(""" & folderPath & fileName & """), null, true)," & vbCrLf & _
            "    SalesData_Sheet = Source{[Item=""SalesData"",Kind=""Sheet""]}[Data]" & vbCrLf & _
            "in" & vbCrLf & _
            "    SalesData_Sheet"
        
        ' Create a new Power Query query for transformation
        ThisWorkbook.Queries.Add Name:=queryName, Formula:= _
            "let" & vbCrLf & _
            "    Source = #" & connName & "," & vbCrLf & _
            "    RemovedTopRows = Table.Skip(Source, 1)," & vbCrLf & _
            "    RemovedDuplicates = Table.Distinct(RemovedTopRows, {" & _
            "        ""Product"", ""Region"", ""Sales"", ""Date"", ""Quantity"", ""Category""})," & vbCrLf & _
            "    FilteredRows = Table.SelectRows(RemovedDuplicates, each [Sales] > 100)," & vbCrLf & _
            "    SortedRows = Table.Sort(FilteredRows,{{""Date"", Order.Ascending}})," & vbCrLf & _
            "    AddedTotalSales = Table.AddColumn(SortedRows, ""TotalSales"", each [Sales] * [Quantity], Int64.Type)" & vbCrLf & _
            "in" & vbCrLf & _
            "    AddedTotalSales"
        
        ' Load the transformed query into the consolidated worksheet
        lastRow = ws.Cells(ws.Rows.Count, "A").End(xlUp).Row
        ws.Cells(lastRow + 1, 1).LoadFromText Connection:=queryName, Destination:=ws.Cells(lastRow + 1, 1)
        
        ' Delete the Power Query connection and query after processing
        ThisWorkbook.Queries.Delete connName
        ThisWorkbook.Queries.Delete queryName
        
        ' Move to the next file
        fileName = Dir
    Loop
    
    ' Format the worksheet
    With ws
        .Range("A1").CurrentRegion.AutoFit
        .Range("A1").CurrentRegion.Style = "TableStyleMedium9"
    End With
    
    MsgBox "Data imported, transformed, and consolidated successfully!"
End Sub

Explanation of the VBA Code

  1. Set Folder Path and Names:
    • folderPath is the path to the folder containing the Excel files.
    • connName is the name of the initial Power Query connection.
    • queryName is the name of the transformed Power Query query.
  2. Delete Existing Connection and Query:
    • The code checks if the connection and query already exist and deletes them to avoid conflicts.
  3. Initialize a New Worksheet:
    • A new worksheet named ConsolidatedData is created to store the consolidated data.
  4. Loop Through Excel Files:
    • The code loops through all Excel files in the specified folder.
    • For each file, it creates a new Power Query connection to import data from the SalesData worksheet.
  5. Create a New Power Query Query for Transformation:
    • This query uses the initial connection as its source.
    • It skips the first row (assuming headers).
    • It removes duplicates based on specified columns.
    • It filters rows where Sales is greater than 100.
    • It sorts the filtered rows by Date in ascending order.
    • It adds a new column TotalSales calculated as Sales * Quantity.
  6. Load the Transformed Query into the Consolidated Worksheet:
    • The transformed data is loaded into the ConsolidatedData worksheet.
  7. Delete the Power Query Connection and Query:
    • After processing each file, the connection and query are deleted to clean up.
  8. Format the Worksheet:
    • The code automatically fits the columns and applies a table style for better readability.

Conclusion

Using VBA in conjunction with Power Query provides a powerful combination for automating and managing complex data workflows. While Power Query is excellent for data transformation and integration, VBA offers the flexibility and control needed for advanced automation and integration tasks. By combining these tools, you can create robust and efficient data processing solutions.

Feel free to comment other examples you would like to see as we continue to explore automation of workflows via both VBA and Power Query!