Advent of Code is back! Unwrap daily challenges to sharpen your Alteryx skills and earn badges along the way! Learn more now.
Community is experiencing an influx of spam. As we work toward a solution, please use the 'Notify Moderator' option on the ellipsis menu to flag inappropriate posts.

Alteryx Designer Desktop Discussions

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

Complex multi row manipulation

Trailduck
7 - Meteor

Hi!

 

I have a use case where I'm generating inventory aging, and I need to do some complex multi row manipulation I cannot figure out.

 

What I'm trying to do is to split values from quantity into new rows every time there is a new delivery. So let's take a practical example from the screenshot below.

Trailduck_0-1683543452191.png

 

 

At 2005-06-05 I had 113 quantity in stock, and 2005-06-06 I got a resupply and now I have 189 in stock. What I want to do here is to take the delta between those two days into a new row so I can continue calculating the stock age for that specific stock quantity. In this case it would be 76. I then want every single minus in quantity going forward to substract from the 113 before starting to substract from the new 76. 

 

Any smart people that can help me here?

6 REPLIES 6
caltang
17 - Castor
17 - Castor

I am assuming your first three columns are unique...

 

Use a Multi-Row Tool and Group by the three columns you have first.

 

Second, for a Delta to be present, what you can do is the following:

 

IF quantity = [quantity + 1]

THEN 0

ELSE [quantity + 1] - quantity

ENDIF

 

Choose the data type to Int16 as well.

 

Try it and see.

 

Hope it helps.

-Cal

Calvin Tang
Alteryx ACE
https://www.linkedin.com/in/calvintangkw/
Trailduck
7 - Meteor

Maybe I didn't explain correctly. I've also added some more columns to make it understandable.

 

Trailduck_0-1683548332170.png

 

 

Every time there is a new delivery, I want the salesAmount to be substracted from the previous stockQuantity until it reaches 0 before starting to substract from the new stockQuantity. So it should substract all salesAmount from 113 until it reaches 0, then it should start substracting from 76.

Yoshiro_Fujimori
15 - Aurora

Hi @Trailduck ,

 

I assume you use your stock FIFO (First In First Out), and you want to know the number of remaining items by each entry date.

If so, I would assign ID to each item in the stock, and add the date when it was input and output.

 

Input

Put only the date when there is a movement (In or Out).

Yoshiro_Fujimori_0-1683548627977.png

 

Output

Yoshiro_Fujimori_1-1683548649229.png

 

Workflow

Yoshiro_Fujimori_2-1683548734438.png

 

I hope this works for your requirement.

Trailduck
7 - Meteor

Getting closer to something here, but what I'm trying to do is to calculate the age for the stock.

Trailduck
7 - Meteor

Getting closer to something here, but what I'm trying to do is to calculate the age for the stock.

Yoshiro_Fujimori
15 - Aurora

@Trailduck ,

 

It depends on the definition of "age".

If you want to get the days from the In-Date to a specific date, you can just add a formula tool as below.

 

Workflow added

Yoshiro_Fujimori_0-1683551367239.png

 

Output

Yoshiro_Fujimori_1-1683551389514.png

 

If you have any other definition, you would need different approach.

But as long as you have the data for each item, it should not be difficult.

Labels