Alteryx Designer Desktop Discussions

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

INCREMENTALLY DECREASE A THRESHOLD VALUE TILL A CONDITION IS MET

Shahas
8 - Asteroid

Hi Everyone,

This is a repeat question as i couldn't get an answer earlier. Below is the workflow stage I'm at.

Shahas_0-1680191256307.png


After this stage, I have to check for the sum of New Delta. If it's above 20k, the threshold of 'abs([Delta Adj])' has to be decreased 500 every time until the sum of New Delta is below 20k. 

I believe we need to use a iterative macro here. As I haven't worked using macro, would be grateful to anyone who can assist on the same.

 

Thanks in advance

 

16 REPLIES 16
JamesCharnley
13 - Pulsar

@Shahas If you want to use an iterative macro I can share the general logic here but you'd need to change the template to match your schema. But the macro will effectively check whether or not that value is >= 20000, and if it is then it will continue to iterate. Once that condition is not met, your value will leave the other output.

 

JamesCharnley_0-1680192581381.pngJamesCharnley_1-1680192646146.png

 

Shahas
8 - Asteroid

heyy @JamesCharnley  Thanks for the response.

 

Correct me if I'm wrong here, but the filter will just be checking for row by row values, and if they are above 20k, it performs the loop condition.

 

What I would like to have is to check whether the sum of new Delta is above 20k and if so, delta adj threshold should be reduced incrementally by 500 till the sum of New delta becomes less than 20k.

 

Hope its clear

Pang_Hee_Choy
12 - Quasar

if it contains sensitive data, you can mock some sample data, and illustrate how it goes.

if not, it just waste all of us time for guessing.

 

you also can see that no body want to answer your question, it wasted time to guess your data, rebuild data and etc.

 

here is my understand, the 20k is limit on total, and -500 for all rows adj delta if exceed.

another guess, minimum of adj delta is 0, 

the another guess, iteration stop adding if reach to 0.

 

Pang_Hee_Choy_0-1680247533527.png

add iteration column for stop iteration increase if met criteria.

 

Pang_Hee_Choy_1-1680247596271.png

sum new delta, append back, reduce adj delta, remove columns for iteration.

 

 

 

Shahas
8 - Asteroid

heyy @Pang_Hee_Choy The dataset looks like below :

 

Shahas_0-1680250631574.png

Here, as u can see, Delta Adj values are filtered to be less than 20k each. After this step is done, I need to check the sum of New Delta, and if its above 20k, Delta Adj value threshold of 20k has to be reduced by 500 to 19500 and again check for the sum of New Delta. This process has to be repeated till the sum of New Delta reaches below 20k.

 

FYI : (NEW DELTA = DELTA ORIGINAL + DELTA ADJ)

 

Hope this brings a bit of clarity

Pang_Hee_Choy
12 - Quasar

@Shahas did my attached file help?

 

and based on your data.

Total first 2 line already exceed . so it should reduce till negative value?

 

i required more detail mock sample in excel/table and explanation, not screenshot. for raw data, 1st round, and the final outcome.

 

For example:

 

Ori

Ori DeltaAdj DeltaNew Delta
20000240022400
8000200010000

 

total new delta exceeds 20k, reduce each adj delta for 500

 

after 1st round macro

Ori DeltaAdj DeltaNew Delta
20000190021900
800015009500

 

still over 20k, continue till

Ori DeltaAdj DeltaNew Delta
20000-410015900
8000-45003500
Shahas
8 - Asteroid

@Pang_Hee_Choy Apologies for the late reply.

 

The logic implemented in the example is exactly what I require. You can use the attached mock data :

 

Original deltaDelta AdjNew Delta
21000450025500
15000320018200
456625007066
324514564701
574040009740
9500300012500
225020004250
124532564501
350010004500
Pang_Hee_Choy
12 - Quasar

here the update version. add summary in case you want to see.

Pang_Hee_Choy_0-1680501943054.png

Pang_Hee_Choy_1-1680501987853.png

 

 

Shahas
8 - Asteroid

@Pang_Hee_Choy That seems to work.. Thank u so much. really appreciated.

Shahas
8 - Asteroid

@Pang_Hee_Choy just a small request though..

 

Correct me if I'm wrong. Here I believe we are reducing values of Delta Adj by 500 in each row...

 

instead of that, I just need the threshold to be reduced by 500

 

at first, the threshold of Delta Adj is kept as < 20000. So only those rows which are having values less than 20k are selected. then sum of New Delta is checked and if it is above 20k, threshold has to be reduced by 500. So then only rows which are less than 19500 are selected and so on..

 

Hope its clear

Labels