Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hello!
I have the following table T, containing pairs of keys/secrets to access an API:
| Key | Secret |
| abcd1 | 1234a |
| fgh2 | 5678b |
Next, I have a parametrized function F to call an API method:
= (page, key, secret) =>
let body = "{
""call"":""ListarClientes"",
""app_key"":"&key&",
""app_secret"":"&secret&",
...
Finally, I have a simple function I to iterate through multiple pages:
= List.Generate(()=>
[Result = try F(1, key, secret)otherwise null, Page = 1],
each [Result]<>null,
each [Result = try F([Page]+1, key, secret)otherwise null, Page = [Page]+1],
each [Result])
What I need: for each row of table T, run I, and store all the results into one table R- after this step, I already figured out how to transform the results.
I tried something like this
let
keys = A[key],
Cli = List.Transform(keys, each I)
in Cli
But since I have more than one parameter (in this case, [key] and [secret]), it didn't work. Any sugestions?
Thanks in advance!
Solved! Go to Solution.
Hello, sorry for the delayed response, sudden shift in projects 😕
Your answer was on the right path. What I needed to do: Table.AddColumn(Source, "I", each I([key], [secret])). This way, I've managed to call multiple times each pair key/secret through loop function I.
Thanks!
instead of List.Generate use Table.AddColumn - column from function call.
Hello, sorry for the delayed response, sudden shift in projects 😕
Your answer was on the right path. What I needed to do: Table.AddColumn(Source, "I", each I([key], [secret])). This way, I've managed to call multiple times each pair key/secret through loop function I.
Thanks!
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 5 | |
| 5 | |
| 4 | |
| 4 | |
| 4 |