Dear All,
The situation is I have some transaction data which has transaction time, location, and various other columns.
on the other hand I have another excel where the data is in the format below:
Start Time | End Time | Location |
25-04-2020 06:00:42 | 25-04-2020 08:03:30 | XYZ |
27-04-2020 16:01:01 | 28-04-2020 00:05:56 | ABC |
I need output like below, the total number of transactions between start and end. The excel has 57000 count so cannot do manually.
Start Time | End Time | Location | Count |
25-04-2020 06:00:42 | 25-04-2020 08:03:30 | XYZ | 3000 |
27-04-2020 16:01:01 | 28-04-2020 00:05:56 | ABC | 2456 |
Solved! Go to Solution.
Hi @Mysa , will it be possible for you to provide a sample dataset?In case you cannot share the dataset give this a try.Try using this configuration and let me know if this helps.
Input-
Output-
Thanks.
Hi @Mysa ,
with Alteryx you shouldn't consider to do it manually ...
Using a Join tool to join ranges to transaction data and DateTime functions to compare should help. I've attached a sample workflow.
Let me know if it works for you.
Best,
Roland
Thank a lot @RolandSchubert! that is what exactly I wanted 🙂
@grazziti_sapna, thanks for the reply. Apologies if my question was not clear.