We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

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

Iterative Macro not working.

subhajits11
8 - Asteroid

I am trying to practice and done these exactly the same as in this video https://community.alteryx.com/t5/Videos/Build-Your-First-Iterative-Macro/m-p/55565

 

And here is my workflow ,but i not able to fine a single reason for not happening iteration.

If anyone can help !

 

here I have attached the file.

 

 

2 REPLIES 2
danilang
19 - Altair
19 - Altair

Hi @subhajits11 

 

The problem in your macro is that the formula creates a new field called [Total Amount]=[Money]*2.

danilang_0-1592143338816.png

 

On each iteration this is always equal to 0.02, since [Money] never changes.

 

Change your formula to [Money]=[Money] * 2.  With this [Money] will double on each iteration 0.02 on iteration 1, 0.04 on iteration 2, 0.08 on iteration 3, etc.

 

Dan

 

 

subhajits11
8 - Asteroid

This was simple and i had this understanding issue .

Now i know the reason ,Thanks to you @danilang 

Labels
Top Solution Authors