Power Query: How to Retrieve Excel Defined Name Values
In this guide, we will walk through the process of defining a named value in Excel and creating a reusable Power Query function to retrieve that value. This will allow you to easily reference specific data from your Excel workbook and use it in queries for tasks like filtering or analysis.
Instructions
Step 1: Define a Named Value in Excel
- Select the cell containing the value you want to name in Excel.
- From the
Formulas
ribbon, clickName Manager
. - In the
Name Manager
dialog box, click theNew
button. - In the
New Name
dialog box:
- In the
Name
field, enter a name for the cell (e.g.,REF_NAMED_RANGE_VALUE
). - In the
Refers to
field, confirm or select the cell with the reference data.

- Click the
OK
button. The new name will appear in theName Manager
.

- Click the
Close
button.
Now, when you select the cell in Excel, the defined name will appear in the Name Box
next to the Formula Bar
.

Step 2: Create a New Power Query Function
- From the
Home
ribbon in Power Query, selectNew Source
>Other Sources
>Blank Query
. This creates a new blank query. - From the
Home
ribbon, clickAdvanced Editor
. - Replace the default query with the following function:
let
GetDefinedNameValue = (definedName) =>
let
name = Excel.CurrentWorkbook(){[Name = definedName]}[Content],
value = name{0}[Column1]
in
value
in
GetDefinedNameValue
- Click the
Done
button. - In the
Query Settings
pane, underProperties
, rename the query toGetDefinedNameValue
. - Click
Close & Load
to exit Power Query.
Results
To test the function:
- From the
Queries
pane in Power Query, selectGetDefinedNameValue
. - A prompt will appear asking for a parameter. For
definedName
, enterREF_NAMED_RANGE_VALUE
. The function call will look like this:
= GetDefinedNameValue("REF_NAMED_RANGE_VALUE")

- Click the
Invoke
button. - The result of the function will appear as a new query named
Invoked Function
in theQueries
pane, returning the valueTEST PROJECT
as expected.

This function can now be used to easily pull specific reference values from an Excel workbook into other queries for filtering or other tasks.
Summary
You’ve learned how to define named values in Excel and create a reusable Power Query function to access them. This process makes it easier to pull specific reference values into other queries without modifying the underlying queries when the reference data changes. These steps will improve the efficiency and consistency of your data analysis.