Hide the Column Showing 2019 Data and the Bonus Rate – A Step‑by‑Step Guide
Ever opened a spreadsheet, stared at the sea of numbers, and thought, *“I wish I could just make that 2019 column disappear”?In practice, most of us juggle reports that contain a mix of public‑facing data and internal footnotes. Worth adding: *
Maybe you also have a “Bonus Rate” column that only the finance team needs to see. Now, you’re not alone. The short version is: you can hide those columns without breaking formulas, protecting the view for anyone who opens the file No workaround needed..
Below you’ll find everything you need to know—what “hiding a column” really means, why you’d want to do it, the exact steps in Excel, Google Sheets, and even a quick look at Power BI. I’ll also point out the pitfalls most people hit, and give you a handful of tips that actually work in the real world That's the part that actually makes a difference..
What Is Hiding a Column?
When we talk about “hiding a column” we’re not deleting anything. Here's the thing — the data stays in place, formulas keep referencing it, and the hidden column can be un‑covered in a click. Think of it as pulling a curtain over a part of the sheet. In Excel and Google Sheets the feature is built‑in; in other tools you’ll find a similar toggle.
The “2019 Data” Column
Often a report will compare current year numbers to a prior year—2019 being a common baseline. Which means that column can become noisy once the new year is underway. Hiding it cleans up the view for stakeholders who only need to see the latest figures.
The “Bonus Rate” Column
Bonus rates are usually internal metrics (e.They’re useful for the finance crew but can confuse sales teams if shown up front. Now, g. , commission percentages, performance multipliers). Hiding this column keeps the sheet tidy while preserving the calculations that depend on it.
Why It Matters / Why People Care
Cleaner Presentation
A cluttered spreadsheet looks unprofessional. When you hide the 2019 column, the remaining columns line up nicely, making charts and tables easier to read. Your audience will thank you for the visual breathing room.
Data Security (Sort Of)
Hiding isn’t encryption, but it does act as a soft barrier. In real terms, if you share a file with “view‑only” permission, casual users won’t see the hidden column unless they know how to unhide it. That’s enough for most internal audits where the real risk is accidental exposure, not malicious hacking Still holds up..
Prevent Accidental Edits
Ever had someone change the bonus rate by mistake and mess up the whole payroll? When the column is hidden, the chance of an accidental edit drops dramatically. You can still lock the column later for extra safety Worth knowing..
Keep Formulas Intact
Because the column isn’t deleted, any VLOOKUP, INDEX/MATCH, or pivot table that references it continues to work. That’s the big win over “deleting the column,” which would break everything downstream.
How It Works (or How to Do It)
Below are the exact steps for the three most common platforms. Pick the one you use, follow the numbered list, and you’ll have a clean sheet in under a minute.
Excel (Desktop)
- Select the column(s) – Click the column header for 2019 (e.g., column C) and, while holding Ctrl, click the header for Bonus Rate (e.g., column F).
- Right‑click on either selected header.
- Choose Hide from the context menu.
- Optional: To protect the hidden columns from being un‑hidden, go to Review → Protect Sheet, set a password, and make sure “Format columns” is unchecked.
Un‑hiding – Highlight the columns on either side of the hidden one, right‑click, and pick Unhide.
Google Sheets
- Click the letter of the 2019 column, then Shift‑click the Bonus Rate column letter to select both (or hold Ctrl for non‑adjacent).
- From the top menu, select Format → Column → Hide column.
- A thin gray bar appears where the hidden column used to be. Click it to reveal a “Unhide” button.
Protecting – Use Data → Protected sheets and ranges, add a description, and set the permission to “Only you.” This stops collaborators from unhiding without approval Small thing, real impact. And it works..
Power BI (Table Visual)
- In the Fields pane, uncheck the box next to 2019 and Bonus Rate.
- The table visual updates instantly, removing those columns from the view.
- If you need them later, just re‑check the boxes.
Note: Power BI doesn’t have a “hide” toggle per se; you’re actually removing the fields from the visual, which is the same end result.
A Quick Checklist
| Step | Excel | Google Sheets | Power BI |
|---|---|---|---|
| Select columns | Click headers (Ctrl for non‑adjacent) | Click letters (Shift/Ctrl) | Uncheck fields |
| Hide | Right‑click → Hide | Format → Column → Hide | Uncheck |
| Protect (optional) | Review → Protect Sheet | Data → Protected ranges | Row‑level security |
| Unhide | Select adjacent, Right‑click → Unhide | Click gray bar → Unhide | Re‑check fields |
Common Mistakes / What Most People Get Wrong
1. Deleting Instead of Hiding
I’ve seen spreadsheets where the “quick fix” was to Delete the 2019 column. The next person opening the file gets #REF! That shatters any formula that points to it. errors and a whole afternoon of debugging That's the part that actually makes a difference..
2. Hiding but Not Protecting
If you hide a column and then share the file with edit rights, anyone can just right‑click → Unhide. That defeats the purpose when you’re trying to keep bonus rates out of sight. Always pair hiding with sheet protection or range protection.
3. Forgetting to Adjust Print Settings
Hidden columns stay hidden when you print, which is usually good. But some people forget to check Print Area first, and end up with a blank margin where the hidden column used to be. A quick Page Layout → Print Area → Set Print Area solves it.
This is the bit that actually matters in practice Worth keeping that in mind..
4. Assuming “Hide” Works in All Views
In Excel’s Page Layout view, hidden columns still occupy space, making the layout look odd. Switch back to Normal view to verify the column truly disappeared.
5. Over‑hiding
Sometimes you hide a column to clean up a report, then later add a new metric and forget the hidden column is still there. Think about it: the result? A spreadsheet that looks fine but silently pulls data from a stale 2019 column. Periodically audit hidden columns—use Ctrl+F and search for “Hidden” in the Name Box.
Practical Tips / What Actually Works
- Use a naming convention: Rename hidden columns to something like “_2019_Data” (underscore prefix). It’s a visual cue that the column is meant to stay hidden.
- Create a “View‑Only” version: Duplicate the sheet, hide the columns, then protect the duplicate. Send that version to external stakeholders; keep the master sheet fully visible for internal use.
- use conditional formatting: If you must keep the column visible for a moment, apply a white‑on‑white format to make the numbers invisible while you work on other parts of the sheet.
- Document hidden columns: Add a small note in a visible cell (e.g., A1) that says “Columns C and F are hidden for reporting purposes.” It prevents future confusion.
- Use VBA for bulk hiding: If you regularly generate reports with the same columns hidden, a simple macro saves time.
Sub HideReportColumns()
Columns("C:C,F:F").Hidden = True 'C = 2019, F = Bonus Rate
ActiveSheet.Protect Password:="yourPass", UserInterfaceOnly:=True
End Sub
Running this macro after the data refresh automatically hides the two columns and locks the sheet, so you never have to repeat the manual steps.
- Test before you share: Open the file in a different user account or a browser (Google Sheets) to confirm the hidden columns stay hidden under the intended permission level.
FAQ
Q1: Will hiding a column affect pivot tables that use that data?
A: No. Pivot tables reference the underlying data range, so the hidden column remains part of the source. The pivot will still calculate correctly, even though the column isn’t visible on the sheet Took long enough..
Q2: Can I hide a column based on a condition (e.g., hide if the year is before 2020)?
A: In Excel you can use VBA to check the header text and hide accordingly. In Google Sheets you’d need an Apps Script. There’s no native “conditional hide” feature Worth keeping that in mind..
Q3: Does protecting the sheet prevent others from unhiding the column?
A: If you leave “Format columns” unchecked when you protect, users can’t unhide. They can still view the data if they have “Edit” rights, so combine protection with “View‑only” sharing for best results That alone is useful..
Q4: What if I need the hidden column for a chart?
A: Charts can still pull data from hidden columns. Just make sure the series references the correct range. The chart will display correctly even though the column is invisible on the sheet.
Q5: Is there a way to hide columns in Excel Online?
A: Yes. The steps are the same as the desktop version: select the column, right‑click, choose Hide. The hidden state syncs across the cloud, so anyone opening the file sees the same view That's the whole idea..
That’s it. Hiding the 2019 data column and the bonus rate doesn’t have to be a mystery. But with a few clicks—or a tiny macro—you can keep your reports clean, protect sensitive numbers, and avoid the accidental formula breakage that plagues many spreadsheets. Next time you open a file and think, “I wish that column disappeared,” you’ll know exactly what to do. Happy hiding!
You'll probably want to bookmark this section That's the part that actually makes a difference..
Advanced Tips for a Polished, Error‑Free Report
1. Create a “Display‑Mode” Sheet
If you frequently need to hand a clean‑looking version of a workbook to senior leadership, consider adding a dedicated Display‑Mode sheet that pulls data from the master sheet via formulas (e.g., =Master!A2) That alone is useful..
- Pros: The master sheet stays fully visible for analysts, while the display sheet shows only the columns you want.
- How to set it up:
- Insert a new worksheet and name it Report.
- In cell A1, type the header you want (e.g., “Employee ID”).
- In the cell below, enter
=Master!A2and drag across only the columns that should be visible (skip 2019 and Bonus Rate). - Protect the Report sheet with View‑only rights; the underlying master sheet can stay hidden or be placed in a separate workbook that only power users can open.
Now you have a one‑click “clean view” that never requires manual hiding.
2. Dynamic Named Ranges That Exclude Hidden Columns
Named ranges are often used in data‑validation lists or chart series. If a column is hidden, the range still includes it, which can cause unwanted blanks. Define a dynamic named range that only captures visible columns:
=INDEX(Sheet1!$A:$Z,0,MATCH("2019",Sheet1!$1:$1,0)-1)
The MATCH function finds the column index of the header you want to exclude, and the INDEX returns everything to the left of it. Also, use a similar construct for the right side of the hidden column. This ensures any dropdowns or charts automatically ignore the hidden data Nothing fancy..
3. use the “Custom Views” Feature (Excel only)
Custom Views let you save a particular display state—including hidden columns, filters, and zoom level Simple, but easy to overlook..
- Hide the columns you don’t want.
- Go to View → Workbook Views → Custom Views.
- Click Add, give it a name like “Executive‑Report”, and make sure Print settings and Hidden rows, columns, and filter settings are checked.
Whenever you need to switch between a full‑data view and a polished report, just select the appropriate view. This eliminates the risk of forgetting to re‑hide a column before distribution.
4. Automate the Entire Process with Power Query (Excel) or Data Studio (Google)
If your data source is refreshed daily, consider pulling it through Power Query (Excel) or a Google Sheets = IMPORTDATA/QUERY pipeline, then:
- Step 1: Load the raw data into a hidden “Staging” sheet.
- Step 2: Create a second query that selects only the columns you want to expose.
- Step 3: Load that query to the final report sheet.
Because the query defines the column set, there’s no need to hide anything manually. The output sheet always contains exactly the columns you intend to share.
5. Audit Trail for Hidden Columns
When you hide a column for compliance reasons, it’s good practice to keep an audit trail:
| Date | User | Column(s) Hidden | Reason | Method (Manual/VBA) |
|---|---|---|---|---|
| 2026‑03‑12 | J. Lee | C, F | FY‑19 financials confidential | VBA macro |
| 2026‑04‑01 | M. Patel | G | Salary adjustments – Q1 | Manual hide |
No fluff here — just what actually works That's the part that actually makes a difference..
Store this table on a hidden “Control” sheet that only administrators can view. It satisfies internal audit requirements without cluttering the main report.
Wrapping It All Up
Hiding columns isn’t just a cosmetic trick; it’s a fundamental part of spreadsheet governance. By combining simple UI actions (right‑click → Hide), strong protection settings, and a sprinkle of automation—whether via a short VBA macro, a custom view, or a Power Query pipeline—you can:
- Keep sensitive figures out of sight for non‑technical stakeholders.
- Preserve the integrity of formulas that depend on those columns.
- Deliver clean, professional reports with zero manual rework.
Remember to document your choices, test the final view under the exact sharing permissions you’ll use, and, when possible, automate the process so the hidden‑column logic lives in the workbook itself rather than in anyone’s memory.
With these practices in place, you’ll no longer scramble to “make that column disappear” at the last minute—you’ll have a repeatable, error‑free workflow that keeps both data and peace of mind intact. Happy reporting!