conditional formatting in PIVOT Table - complete tutorial blogpost.

PivotTable Conditional Formatting: Highlight Trends & Outliers

A PivotTable showing 200 rows of revenue data tells you everything and nothing at once. Conditional formatting changes that — it applies color scales, icon sets, data bars, and threshold rules automatically, so outliers and top performers become visible at a glance. The key is choosing the right scope. Using “Selected cells only” creates a static rule that breaks the moment you filter or refresh the table. Using “All cells showing [field] values” creates a dynamic rule that follows the data everywhere it moves. This guide covers all three PivotTable scope options, with six practical examples: a green-yellow-red heat map across all revenue cells, a traffic light icon set with exact percentage thresholds, a Top 10 auto-highlight that recalculates on filter, data bars for in-cell visual comparison, a positive/negative variance rule pair, and a formula-based row highlight with a warning about its limitations.

Blogpost tutorial on PivotTable Calculated Items: Add Custom Sub-Totals and Formulas Without Changing Your Data

PivotTable Calculated Items: Add Custom Sub‑Totals & Formulas

Your PivotTable shows Q1, Q2, Q3, and Q4. You want a row for H1 (Q1+Q2) and another for H2 (Q3+Q4) — without adding columns to the source data. Calculated Items make this possible. Each one inserts a virtual row or column. Its value comes from a formula referencing other items in the same field. The result appears in the PivotTable as if it were real data, but it lives entirely inside the PivotTable itself.

This guide explains what calculated items are and how they differ from calculated fields. It also covers creation, editing, and deletion. You will learn when to use them, what their key limitations are, and six practical examples. Examples include grouping quarters into halves, computing market share, and creating a budget‑versus‑actual variance row.

Marketing ROI Calculator Excel template preview with KPI cards for investment, revenue, profit, and ROI in a clean green ExcelGuru-style design.

Marketing ROI Calculator

Download this Marketing ROI Calculator Excel template to track campaign investment, revenue, profit, and ROI in one simple dashboard. Ideal for marketers, agencies, and business owners who want to measure returns and improve budget decisions.

Marketing KPI Dashboard Excel template for tracking traffic, leads, spend, revenue, ROAS, and campaign performance in ExcelGuru style.

Marketing KPI Dashboard

Tired of chasing numbers across five different ad dashboards and email reports? Stop letting messy data stall your meetings. This Excel dashboard turns noisy marketing activity into a clear, accountable system. Designed for teams who are tired of ‘busy but not controlled’ work, it brings KPIs, targets, owners, and status into one visual hub. Spot wasted spend and missed follow-ups before they burn your budget. Get faster decisions, instant performance explanations, and indicators that actually mean something. Start controlling your marketing.

Digital Marketing Dashboard Excel template preview with KPI cards for traffic, leads, spend, and revenue in a clean green ExcelGuru-style design.

Digital Marketing Dashboard

A good digital marketing dashboard should do more than store rows of data. It should help a marketer make faster decisions, see what needs attention, and explain performance without digging through multiple tools. This Excel template is designed for digital marketers and small business teams who want a simple but useful way to combine SEO, ads, email, social, and conversion KPIs into one dashboard.

Executive Marketing Dashboard Excel template preview with KPI cards for revenue, leads, ROAS, and spend in a clean green ExcelGuru-style design.

Executive Marketing Dashboard

A good executive marketing dashboard should do more than store rows of data. It should help a marketer make faster decisions, see what needs attention, and explain performance without digging through multiple tools. This Excel template is designed for CMOs, founders, directors, and senior managers who want a simple but useful way to present high-level marketing KPIs in a board-ready format.

TOCOL and TOROW functions in Excel 365 — showing a 3×3 grid flattened three ways: TOCOL with scan=FALSE reading row-by-row producing 1,2,3,4,5,6,7,8,9 in a green column, TOCOL with scan=TRUE reading column-by-column producing 1,4,7,2,5,8,3,6,9 in a teal column, and TOROW producing a horizontal row in indigo, with key formulas for cross-column UNIQUE deduplication, WRAPROWS pipeline, multi-sheet master list, and tag grid TEXTJOIN.

TOCOL & TOROW in Excel: Flatten Ranges into Single Columns or Rows

FILTER returns a table. WRAPROWS needs a column. UNIQUE works best on a flat list. TOCOL is the missing link — it flattens any 2D range into a single column in one formula. TOROW does the same into a single row. This guide covers eight examples: basic flattening with row-by-row vs column-by-column scan direction, all four ignore values for removing blanks and errors, stacking multiple columns for cross-column UNIQUE deduplication, converting rows to columns for SORT, the TOCOL+WRAPROWS flatten-then-reshape pipeline, building a master list from multiple sheets using VSTACK+TOCOL, feeding a 2D tag grid into TEXTJOIN, and deduplicating values across five columns for a dynamic dropdown source.

TEXTSPLIT function in Excel 365 — showing three transformation examples: a comma-separated string split into four columns, a mixed comma-and-semicolon string split using multiple delimiters into five clean tokens, and a semicolon-and-comma delimited string split into a 3×3 two-dimensional table, with key formulas for row splitting, Key=Value parsing, in-cell CSV with DROP, and a TEXTJOIN rejoin pipeline.

TEXTSPLIT in Excel 365: The Ultimate Way to Split Text into Columns/Rows

A cell contains “Alice, Bob; Carol” — TEXTSPLIT splits it into three separate values in one formula. It is fully dynamic, updates when the source changes, and handles multiple delimiters in a single call. This guide covers eight examples: splitting by a single delimiter into columns or rows, using multiple delimiters as an array with TRIM via LET, 2D splits with both row and column delimiters, Key=Value pair parsing with CHOOSECOLS and VLOOKUP, in-cell CSV parsing with DROP and SORT, counting and extracting tokens by index, case-insensitive splitting for natural language data, and a complete split-clean-sort-rejoin pipeline using LET, TRIM, SORT, and TEXTJOIN.

WRAPROWS and WRAPCOLS functions in Excel 365 — showing a flat list of nine values reshaped into a 3×3 grid two ways: WRAPROWS filling left-to-right row by row in green, and WRAPCOLS filling top-to-bottom column by column in teal, with key formulas for a dynamic calendar, filtered display grid, and WRAPCOLS product catalogue layout.

WRAPROWS & WRAPCOLS in Excel: Reshape One-Dimensional Arrays into Grids

A flat list of 12 months becomes a 3×4 calendar grid. A 50-item product column reshapes into a 5×10 display table. WRAPROWS and WRAPCOLS perform this transformation in one formula. WRAPROWS fills left-to-right and wraps to the next row. WRAPCOLS fills top-to-bottom and wraps to the next column. This guide covers eight examples: basic grid reshaping with scan direction comparison, controlling the pad_with argument for partial rows, a dynamic self-updating calendar using SEQUENCE, a product catalogue display grid, filtered display grids via WRAPROWS+FILTER, pairing two columns with TOCOL+HSTACK, reshaping survey data into a month-by-question grid, and a dynamic wrap count that auto-resizes to a target number of columns.

CHOOSECOLS and CHOOSEROWS functions in Excel 365 — showing a 4-column source table where CHOOSECOLS(A2:D20, 1, 3) extracts only the Name and Score columns, with key formula examples for reversing columns, selecting by header name with MATCH, a dynamic dropdown column picker, and removing a column using SEQUENCE and FILTER.

CHOOSECOLS & CHOOSEROWS: Extract Specific Columns/Rows from Arrays

INDEX retrieves values from a table by row and column number. CHOOSECOLS and CHOOSEROWS do the same for entire columns and rows — and they do it in a single readable call. Pass the array and a list of column or row numbers, and the function returns exactly those columns or rows in the order you specify. Negative numbers count from the end, so you never need to know the total width. This guide covers eight examples: selecting named columns by position, reversing and duplicating columns, CHOOSECOLS on FILTER output, a dynamic column picker driven by a dropdown, CHOOSEROWS for specific and alternating rows, combining both functions for rectangular sub-table extraction, removing a column with SEQUENCE+FILTER, and selecting columns by header name using MATCH for reorder-proof formulas.