Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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
what is expected number of steps we should get under the Applied Steps TAB?
Solved! Go to Solution.
@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"
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:
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:
@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"
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 38 | |
| 37 | |
| 28 | |
| 27 |
| User | Count |
|---|---|
| 124 | |
| 89 | |
| 73 | |
| 66 | |
| 65 |