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.
This code works for me fine but as I can not hard code n and i would know it from "some other code" how would I make this into a loop that would run n times?
//some other code
in
result1,
a = Query1{0}[list],
b = Query1{1}[list],
......
n = Query1{n}[list]
c = List.Combine({a,b,...n})
in
c
Solved! Go to Solution.
What about this? Just change Number 100 to your n value - it can be stored also in [Column1] for example, so replace 100 with [Column1] if you add this as custom column.
= List.Combine(List.Transform({0..100}, (n)=> Query1{n}[list]))
What about this? Just change Number 100 to your n value - it can be stored also in [Column1] for example, so replace 100 with [Column1] if you add this as custom column.
= List.Combine(List.Transform({0..100}, (n)=> Query1{n}[list]))
just realized that my n is in //some other code and not accessible in that part of the code
it is inside Query1
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
17 | |
9 | |
8 | |
7 | |
7 |