Home / General / How to Turn Off Totals for Specific Columns in Power BI

How to Turn Off Totals for Specific Columns in Power BI

Power BI continues to evolve as the industry-standard analytics platform for organizations seeking visually rich, interactive decision-making experiences. However, even experienced users encounter situations where Power BI’s default behavior doesn’t perfectly match business requirements. One such scenario is controlling totals in the Table or Matrix visuals—particularly when you want to disable totals only for specific columns.

In enterprise dashboards, column totals can sometimes be misleading, irrelevant, or mathematically incorrect (e.g., total of averages, total of ratios, total of brand counts). In such cases, business users often need to hide or disable the total for some columns while keeping totals for others.

In this blog, we are going to learn a quick and easy way to disable the totals in Power BI for the desired columns.

Scenario: Blow is the table visual with 4 Columns with totals in yellow font.

Objective: We want to disable the total for any One column here ( Let’s take No. of Brands for now)

Step1. Select your table visual and click on the Format ribbon.

Step2. Go to Formatting Filed under the Format ribbon and select the desired column for which you want to turn off the total, We have a BrandName column here

Step 3: Observe the font color in general

White color is applied to values and not to the total for all the columns in the table visual.

Step4. Change the font col to the background color of the visual so that it will hide the total value when you apply it for totals and not for values.

And here we have our desired result.

Book a free 30-minute Power BI review with our experts and discover how to eliminate reporting gaps and enhance data accuracy.

Why Would You Want to Turn Off Totals for Specific Columns in Power BI?

Power BI automatically calculates totals for numeric columns in a table or matrix. However, these totals are not always meaningful.

Here are frequent real-world scenarios where disabling totals is essential:

1. When the Total of a Count Does Not Make Sense

For example:

  • Number of Brands
  • Number of Categories
  • Number of SKUs

Summing these results in inflated totals that mislead stakeholders.

2. When the Measure Represents an AVERAGE or RATIO

Totals for averages look mathematically incorrect because:

  • Power BI sums the averages instead of recalculating them.
  • Business users often misinterpret these totals.

3. When You Display Text-Based or Categorical Expressions

Totals for:

  • Rank labels
  • Flags
  • KPIs
  • Descriptions
    don’t add any analytical value.

4. When Totals Cause Visual Clutter

Minimalist dashboards intentionally hide totals to enhance readability.

As a Power BI partner working with enterprise clients, Addend Analytics often sees CFOs, BI managers, and operations teams request this refinement to avoid reporting inconsistencies.

Why Power BI Doesn’t Support This Natively

The challenge is that Power BI doesn’t provide a direct toggle to disable totals at a column level in a table visual.
You can turn off:

  • Grand Total
  • Subtotals

…but this applies to all columns.

Because of this limitation, users must apply creative formatting workarounds like the one described in your original content.

Why the Formatting Trick Works

Power BI treats the total row as a separate formatting layer.
Each column has:

  • Value formatting
  • Total formatting

By observing that the total row uses a different font color, you can manipulate that setting.

Changing the total’s font color to match the background color effectively hides it, making it invisible to end users a clever UI hack that enterprise report developers use often.

This approach is:

  • Fast
  • No DAX required
  • Works for most table visuals
  • User-friendly

Transform your dashboards into AI-ready, enterprise-grade intelligence systems with Addend Analytics.

A More Advanced Approach Using DAX (For Complex Models)

For cases when hiding totals is not enough, you can also use DAX measures to conditionally remove totals:

Example:

NoOfBrands_Display =

IF(

    HASONEVALUE(Products[BrandName]),

    [NoOfBrands],

    BLANK()

)

When to Use the DAX Method Instead of Formatting

Choose DAX when:

  • The total is mathematically incorrect
  • You need to calculate a different total (e.g., weighted average)
  • You want to display BLANK() instead of hiding visually
  • You’re building enterprise-grade financial or operational reports

Addend Analytics regularly implements such logic in Power BI dashboards across industries like:

  • Manufacturing
  • FMCG
  • Retail
  • BFSI
  • Healthcare

Best Practices for Power BI Table Totals

To elevate your report quality:

  • Always validate totals before publishing: Totals often misrepresent underlying metrics.
  • Use DAX to create custom totals when needed: Especially for financial metrics such as margins, profitability ratios, and KPIs.
  • Make visuals intuitive for end users: Hiding totals reduces confusion for non-technical business stakeholders.
  • Apply consistent formatting across all visuals: This improves dashboard readability and trustworthiness.
  • Document total logic in a tooltip or info icon: Enterprise BI teams appreciate transparency.

Strategic Business Impact

While hiding totals may seem like a minor formatting task, it has a significant impact on decision accuracy.

Incorrect totals can lead to:

  • Misreported financial summaries
  • Inaccurate operational decisions
  • Confusion during executive review meetings
  • Lack of trust in the BI system

By applying proper formatting and DAX techniques, organizations ensure that Power BI remains a trusted source of truth, directly influencing revenue decisions, forecasting accuracy, production planning, and supply chain visibility.

This is exactly what leading companies achieve when they partner with Addend Analytics.

Controlling totals for specific columns in Power BI is more than a formatting trick — it’s a critical capability for building accurate, intuitive, and trustworthy dashboards. By combining Power BI’s built-in formatting options with advanced DAX techniques, organizations can create clean visuals that align with business logic and eliminate confusion.

Whether you’re building operational dashboards, executive scorecards, or financial analytics, knowing how to manage totals is key to delivering high-quality insights.

FAQs: Hiding Totals in a Power BI Matrix

Frequently Asked Questions

Common questions about hiding, showing, and controlling totals in a Power BI matrix or table.

No, Power BI only lets you toggle grand totals and subtotals on or off for an entire table or matrix, there’s no built-in switch for a single column. That’s exactly why the formatting trick, matching the total’s font color to the background, or a DAX-based workaround exists in the first place. Microsoft hasn’t added a per-column total toggle as of now, so some kind of workaround is still required either way.
Select the visual, go to the Format pane, and toggle Row totals and Column totals off under the Totals settings. This removes every total at once across the whole visual, which is different from hiding just one column’s total while keeping the rest. Use this when you don’t want any totals at all, and reach for the column-specific trick when you only want to remove one. Source: Quicklylearnpowerbi
This is a known snag some people run into. Changing a column’s font color for the total row can sometimes reset the header’s color too, since both settings can share the same formatting scope depending on how the visual is configured. Double check that you’re editing the color specifically under the total row’s formatting for that column, not a broader column-wide style that also touches the header. Source: Microsoft
Yes, this is essentially the reverse of the trick in this post. A common fix is a measure that checks ISINSCOPE against the row and column fields and returns BLANK unless neither is in scope, so the value only appears at the total level. It takes a bit more DAX than the font-color method, but it’s a common enough need that it comes up regularly in Power BI community discussions. Source: Microsoft Power BI Community
ISFILTERED and SELECTEDVALUE both come up as alternatives in community discussions, though results can vary depending on your model. SELECTEDVALUE combined with a BLANK() check is often used to return a value only when one specific item is filtered down to, similar in spirit to the HASONEVALUE approach already in this post. Which one works best usually depends on your table structure, so some trial and error is normal.
Yes. This comes up when someone wants a totals column to disappear specifically when only one item, like a single year, is already selected in a slicer, since the total would just repeat that one value otherwise. It requires a DAX measure that reacts to the current filter context rather than a static formatting setting, since the font-color trick alone can’t respond to what a user selects. Source: Microsoft
No, and this is an important limitation worth knowing. The font-color trick only hides the total visually within the report, if the data gets exported to Excel, the previously hidden values become visible again since nothing was actually removed from the underlying data. If you need the total genuinely gone from exports too, a DAX measure that returns BLANK() is the safer choice over a formatting-only fix. Source: Microsoft Fabric Community

Need help improving your Power BI reports or optimizing your data models? Talk to our experts

Author By

Kamal Sharma

Kamal brings over 20 years of experience in data analytics and business intelligence. He has led the design and implementation of analytics solutions across operations, financial reporting, and performance improvement initiatives. With a background in business statistics and Six Sigma, his work focuses on applying data in a structured and practical way to solve real business challenges.

Author By

Kamal Sharma

Kamal Sharma

Kamal brings over 20 years of experience in data analytics and business intelligence. He has led the design and implementation of analytics solutions across operations, financial reporting, and performance improvement initiatives. With a background in business statistics and Six Sigma, his work focuses on applying data in a structured and practical way to solve real business challenges.

Decision-Ready Analytics

Turn your OEE dashboard into a decision system.

Book a 30-minute working session with our manufacturing analytics team.
Translate »
Index