Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Try below logic
1: Load all accounts in one table
accounts:
Load distinct accountID from table;
2: Use For loop like
For i=0 to NoOfRows('accounts') - 1
let vaccountID = peek('accountID',$(i),'accounts');
connectionstring
AccountsDetails:
Load * ;
Select * from table
where accountId='$(vaccountID)';
Next i;
drop table accounts;
Regards,
Prashant Sangle
Prashant..In case I have to submit bunch of accounts at a time in a variable instead of 1 account at a time can we do it here?