How can I change the Load Text File(url) method to Multi HTTP Request method?
This url already uses the Load Text File(url) to download the data and get the table.url = "……" || gp || "&……";
txt = Load Text File( url );
d1 = JSON To Data Table( txt );
How to change to the following form?url = {};dt=Current Data Table();
For( i = 1, i <= 10, i++,
gp = dt[i, "test"];
Insert Into(
url, "……" || gp || "&……" );
);
rqs = New Multi HTTP Request();
For( i = 1, i <= N Items( url
...