Hi,
I am trying to solve a problem that I have traditionally done inside Excel, but want to use Alteryx to mass solve this problem. Perhaps the example would speak more than words.
This below is what I am trying to do, and from here I can calculate the impact of currency, mix and line item price changes on overall average price levels, but I need to get the data in this format to do it. So this is a simple example, but naturally in real life there can be cases where some customers buy something in one month and not the next, so there would be blank fields, and the data would need to be summarised on customer, product and currency (no duplicates of these combininations).
Then for bonus points if the source data had years worth of data and then how to select it so that the user could select what was the baseline month and what the comparison month would be. In this case below there are Jan vs Feb, but could equally be Q1 vs Q2 or 2015 vs 2016.
Thanks in advance!!
Kevin
| Source Data | | | | | | | |
| | | | | | | | | |
| Month | Customer | Product | Currency | Quantity | Sales Value (Curr) | Sales Value (EUR) | | |
| Jan | A | Y | EUR | 62 | 5 518 | 5 518 | | |
| Jan | A | Z | EUR | 53 | 4 717 | 4 717 | | |
| Jan | B | Y | GBP | 90 | 5 760 | 7 200 | | |
| Jan | B | Z | GBP | 68 | 5 440 | 6 800 | | |
| Feb | A | Y | EUR | 82 | 6 970 | 6 970 | | |
| Feb | A | Z | EUR | 62 | 6 138 | 6 138 | | |
| Feb | B | Y | GBP | 91 | 7 134 | 8 918 | | |
| Feb | B | Z | GBP | 51 | 3 672 | 4 590 | | |
| | | | | | | | | |
| Target | | | | | | | | |
| | | | | | | | | |
| Customer | Product | Currency | JAN Quantity | FEB Quantity | JAN Sales Value (Curr) | FEB Sales Value (Curr) | JAN Sales Value (EUR) | FEB Sales Value (EUR) |
| A | Y | EUR | 62 | 82 | 5 518 | 6970 | 5518 | 6970 |
| A | Z | EUR | 53 | 62 | 4 717 | 6138 | 4717 | 6138 |
| B | Y | EUR | 90 | 91 | 5 760 | 7134,4 | 7200 | 8918 |
| B | Z | EUR | 68 | 51 | 5 440 | 3672 | 6800 | 4590 |