Hi guys! So, basically what I want to do is to identify certain patterns (cycles actually) of users using a machine. I need to use a IF-THEN statement between two specific transactions. The code needs to run from one Login to the next one and use the code of transactions between to identify the cycles. TIME CODE TRANSACTION 7:00:30 801 Login 7:00:35 405 Transaction X 7:00:40 404 Transaction Y 7:02:30 801 Login 7:02:35 404 Transaction Y 7:02:40 404 Transaction Y The output should be: 1 X Cycle and 1 Y Cycle. Also, Transaction X is stronger than Transaction Y, then, if X occurs, the cycle is identified as a ''X Cycle'' If not, we have a ''Y Cycle''. Any ideas? Thank you so much!
... View more