Hi, I am a little new to the world of Alteryx & after racking my brain over a problem for quite some time, I seek help. So here goes:
I am trying to find if a particular person placed an order between a set of dates. I have two input files -
I need to be able to see if order placing time of 'File 1' customers lies between any of the start & end times file 2 taken one row at a time. So basically each order time from 'File 1" needs to be checked whether or not it falls between the start & end times stated in one row of 'File 2".
I would also require which event it corresponds to but I understand that in case of overlap of event times that might be difficult. If you guys can guide here, that would be of great help as well.
Required output would be something like this:
| Mobile number | Order DateTime | Condition match | Event |
111111111 | 2019-09-17 23:00:00 | Y | A (&  |
111111111 | 2019-09-18 00:10:00 | Y | A (&  |
111111123 | 2019-09-17 20:10:00 | Y | C |
For me, the problem was:
How to join the two files (I was going to append the file but I believe it would create a very huge dataset to manage)
How to check if order datetime is between the times in 'File 2' checked one row at a time
Any help is much appreciated!