Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Nietzsche
Helper V
Helper V

Why Power Query change my Source step name and how do I change it back to Source?

Hello everybody,

 

I only renamed my query, but for some reason PQ change the name of the Source step to match the name of the query, and I can not get it back to Source. 

Nietzsche_0-1715988822213.png

 

There is nothing in the M code that would suggest a Source name change.

Nietzsche_1-1715988865643.png

#table( type table [Data=record, Title = text], {
{[First="Bill", Last="Jelen"], "First"},
{[First = "Miguel", Last= "Escobar", Country ="Panama"],
"Second"},
{[First = "Ken", Last= "Puls", Country ="Canada",
#"Tall?" = true], "Third"}
} )

How can I change the Source step back to Source and 

How can prevent PQ from changing the Source step in the future?

 

Thank you.

2 ACCEPTED SOLUTIONS
OwenAuger
Super User
Super User

Hi @Nietzsche 

In order to control the step name shown in Applied Steps, you would have to use a let/in statement.

In this case you could write:

let
  Source = #table(
    type table [Data = record, Title = text],
    {
      {[First = "Bill", Last = "Jelen"], "First"},
      {[First = "Miguel", Last = "Escobar", Country = "Panama"], "Second"},
      {[First = "Ken", Last = "Puls", Country = "Canada", #"Tall?" = true], "Third"}
    }
  )
in
  Source

Regards


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
LinkedIn

View solution in original post

Anonymous
Not applicable

There is no source, its just a table expression.  Just because it's your first applied step doesn't mean that it's the source or is a source even.

 

--Nate

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

There is no source, its just a table expression.  Just because it's your first applied step doesn't mean that it's the source or is a source even.

 

--Nate

OwenAuger
Super User
Super User

Hi @Nietzsche 

In order to control the step name shown in Applied Steps, you would have to use a let/in statement.

In this case you could write:

let
  Source = #table(
    type table [Data = record, Title = text],
    {
      {[First = "Bill", Last = "Jelen"], "First"},
      {[First = "Miguel", Last = "Escobar", Country = "Panama"], "Second"},
      {[First = "Ken", Last = "Puls", Country = "Canada", #"Tall?" = true], "Third"}
    }
  )
in
  Source

Regards


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
LinkedIn

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.