Hi All,
New joiner in using Alteryx. I have a daily csv file that contains 3 months worth of data. I would like to stitch them all up together to create a master file. In addition, I want the workflow to check on the latest file if there were any differences from the last one, and if there are to update with the most current one.
May 1st file:
| Unique ID | Date | Region | Status |
| 111 | Apr-15 | AAA | Fail |
| 222 | Apr-17 | BBB | Fail |
| 333 | Apr-20 | CCC | Success |
May 2nd file:
| Unique ID | Date | Region | Status |
| 111 | Apr-15 | AAA | Fail |
| 222 | Apr-17 | BBB | Fail |
| 333 | Apr-20 | CCC | Success |
| 444* | Apr-21 | CCC | Success |
May 3rd file:
| Unique ID | Date | Region | Status |
| 111 | Apr-15 | AAA | Success** |
| 222 | Apr-17 | BBB | Success** |
| 333 | Apr-20 | CCC | Success |
| 444 | Apr-21 | CCC | Success |
| 555* | May-1 | AAA | Success |
*new addition unique ID ref for that day's file
**status update on previous unique ID ref
The goal of this exercise is because my IT dept can't export out a YTD data to me on a daily basis. So I want to make my own YTD data. I understand after 3 months, there is no more status "refresh" but this is the best that I can live with. How would you suggest doing this?
Thanks all.