Skip to main content
All CollectionsReports
Guide to Named Ranges in LiveFlow
Guide to Named Ranges in LiveFlow

Learn more about a powerful set of named ranges automatically managed for you by LiveFlow

Alex Finn avatar
Written by Alex Finn
Updated over 2 weeks ago

What Are Named Ranges?

Named ranges make your formulas easier to read and maintain by assigning a custom name to a range of cells.

Example:

Instead of writing:
=SUM('Report Data'!C11:Z11)
You can use a named range to make it more intuitive:
=SUM(MonthlySubtotals)

Where to Find Named Ranges

You can see all your named ranges in the Name Box, located in the top-left corner next to the formula bar.

For instructions on how to create your own named ranges, check out Google’s guide.


LiveFlow’s Auto-Managed Named Ranges

LiveFlow automatically creates and updates six named ranges for every report. These ranges adjust dynamically whenever you refresh your report—so you never have to update them manually.

Why Use LiveFlow's Named Ranges?

Always Up-to-Date – Even if you add or remove rows and columns, your formulas will continue to work.
Consistent Naming – Named ranges follow a predictable format, making it easy to reference reports.
Automatic Updates – If you rename a sheet, LiveFlow updates the named ranges and any references to them.


The Six Auto-Managed Named Ranges

Each named range follows this format:
_{SheetName}RangeName (e.g., ProfitLoss_Report)

1. {SheetName}_Report

➡ Covers the entire report area.
✔ Useful for lookup functions like VLOOKUP, QUERY, and DSUM.

2. {SheetName}_Info

➡ Contains data about the report (e.g., company name, currency, period).
✔ Useful for lookup functions like VLOOKUP when referencing report details.

3. {SheetName}_UpdatedAt

➡ Points to a single cell showing the report’s last refresh date/time.

4. {SheetName}_RowLabels

➡ Covers the row labels (first column, starting below column headers).
✔ Works well with VLOOKUP and INDEX/MATCH.

5. {SheetName}_ColumnLabels

➡ Covers the column labels (first row of the report, starting from the first data column, typically column C).
✔ Often combined with {SheetName}_RowLabels and {SheetName}_Contents in lookup formulas.

6. {SheetName}_Contents

➡ Covers the actual report data, bounded by {SheetName}_RowLabels and {SheetName}_ColumnLabels.
✔ Ideal for XLOOKUP or INDEX/MATCH formulas.


Naming Rules for LiveFlow’s Named Ranges

  • Named ranges use the sheet name as a prefix.

  • Any special characters (except letters and numbers) are removed.

  • If the sheet name starts with a number, LiveFlow adds an underscore (_) before the name.

Sheet name

Named range prefix

Example

Profit & Loss

ProfitLoss_

ProfitLoss_Report

Profit & Loss (1)

ProfitLoss1_

ProfitLoss1_RowLabels

Balance Sheet 2023

BalanceSheet2023_

BalanceSheet2023_ColumnLabels

2023 Balance Sheet

_2023_BalanceSheet

_2023_BalanceSheet_Contents

Did this answer your question?