Hi everyone,
I have a query I am unable to figure out, really appreciate anyone's help!
I wish to break down a period > 1 month into different rows and simultaneously also break down the amount.
While i understand the initial step would be to split the months and convert them into alteryx readable date format, not sure about how to proceed.
Here is the Input and the intended Output data respectively (also attached the excel file):
(also, i cannot perform dragging vendor name down using a multi row formula on the entire data set as few line items in between are meant to have no vendor names)
| Vendor | Period | Amount |
| A | Apr 22 - Jun 22 | 90 |
| B | May 22 - Jun 22 | 30 |
| C | Oct 22 - Dec 22 | 120 |
| Vendor | Period | Amount |
| A | Apr-22 | 30 |
| A | May-22 | 30 |
| A | Jun-22 | 30 |
| B | May-22 | 15 |
| B | Jun-22 | 15 |
| C | Oct-22 | 40 |
| C | Nov-22 | 40 |
| C | Dec-22 | 40 |