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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
anonymous_98
Resolver I
Resolver I

Not all Power Query Steps are shown under the Applied Steps TAB

Hi All,

 

so here is the scenario.

Issue: not all the steps of my power query code are visible in the Applied steps TAB.

 

Code1: 

let
    a = 1,
    b = 2
in
    a + b

 

we are getting below Applied Steps for the Code1

Power Query - Incorrect Applied Steps.PNG

 

what is expected number of steps we should get under the Applied Steps TAB?

  1. we should get 3 steps under the Applied Steps TAB.
2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@anonymous_98 , I have done a small change and I am able to see all steps

 

let
a = 1,
b = 2,
c= a+b
in
c

 

avoid calculation in "in"

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

anonymous_98
Resolver I
Resolver I

Hey @anonymous_98,

here is the solution to your issue.

Use Below power query code to get the expected correct number of steps under the Applied Steps TAB.

Code2: 

 

let
    a = 1,
    b = 2,
    result = a + b
in
    result

 

 

we are getting below applied steps for Code2:

Power Query - Correct Applied Steps.PNG

 

  1. so what should we do to get the correct applied steps ?
    1. always save your end result in a variable and display that variable in the output.
    2. in our case, we saved the results into the variable result and then displayed the result variable in the output.

View solution in original post

2 REPLIES 2
anonymous_98
Resolver I
Resolver I

Hey @anonymous_98,

here is the solution to your issue.

Use Below power query code to get the expected correct number of steps under the Applied Steps TAB.

Code2: 

 

let
    a = 1,
    b = 2,
    result = a + b
in
    result

 

 

we are getting below applied steps for Code2:

Power Query - Correct Applied Steps.PNG

 

  1. so what should we do to get the correct applied steps ?
    1. always save your end result in a variable and display that variable in the output.
    2. in our case, we saved the results into the variable result and then displayed the result variable in the output.
amitchandak
Super User
Super User

@anonymous_98 , I have done a small change and I am able to see all steps

 

let
a = 1,
b = 2,
c= a+b
in
c

 

avoid calculation in "in"

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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