Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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"
User | Count |
---|---|
84 | |
76 | |
74 | |
48 | |
39 |
User | Count |
---|---|
114 | |
56 | |
51 | |
42 | |
42 |