I am a newbie to Alteryx and am trying some use cases from VBA in Alteryx.
We have a process that:
- Daily I receive 50 attachments from 50 different vendors
- In VBA I open those 50 workbooks by Looping thru our server that has the 50 attachments
- Once I open the individual workbook
- I open a historical workbook of all previously received vendor transactions
- I scan all transactions from the daily workbook vs. the historical transactions
- If I find a match between historical and daily then I flag it as a duplicate transaction and load the transaction(s) to a 3rd workbook called Daily Transactions Received today. If it is not a duplicate then load the transaction(s) to the Daily Transactions Received Workbook. The Daily Transactions Received Workbook will store all transactions received today for all of the 50 vendors.
- I then leave OPEN the historical workbook AND the Daily Transaction workbook
- I then loop to the next vendor workbook (x of 50) and repeat 3-7
Questions
#1-I am trying to determine from a Designer perspective the best approach ? Note I do not want to have to open the Historical and Daily Transactions workbook 50 times.
#2-Also we have Alteryx Server - is it possible to save/store the Historical workbook on the server as I would like to reduce latency when grabbing and saving the files.
#3-Am I better off to use VBA or will Alteryx handle this well