Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Iterative loop

SuhailPasha07
5 - Atom

Hi, I'm trying to execute an iterative logic for the below template

 

Input:

Open balance New billingClose balance
00100
 50 
 70 
 80 
 90 

 

expected Output:

Open balance New billingClose balance
00100
10050150
15070220
22080300
300-60240

 

Here I'm trying to create an iterative loop where the close balance in 1st row is the new open balance in 2nd row and the close balance for the second row is an addition of open balance + New billing in the second row and the loop should repeat so on.. 

 

Any help would be appreciated.

 

Regards,

Suhail

2 REPLIES 2
LordNeilLord
15 - Aurora

Hey @SuhailPasha07 

 

You should be able to achieve this with Multi-Row formula:

 

Capture.PNG

SuhailPasha07
5 - Atom

Thanks Neil !!

Labels