Hi,
Can some one please help me with below case?
Date set 1: Employee current progression steps
| Employee | Grade | Step1 | Step2 | Step3 | Step4 |
| A | 1 | Start | Level 10 | Level 15 | Level 17 |
| B | 1 | Level 10 | Level 15 | Level 17 | |
| C | 1 | Level 15 | Start | Level 17 | |
Date set 2: Progression steps by grade should be as below
| Grade | Step1 | Step2 | Step3 | Step4 |
| 1 | Start | Level 10 | Level 15 | Level 17 |
Desired output:
1) Compare Step 1 progression in Data set 1 with Data set 2 to find out at what step the employee started with!
2) Check whether the employee followed exactly same steps follows in Data set 2
Example: Employee B started at Level 10. That is Step2 in Dat set 2. Now the employee next levels in Data set1 should match with Step3 and Step4 in Data set 2.
Example output:
| Employee | Grade | Step1 | Step2 | Step3 | Step4 |
| A | 1 | ok | ok | ok | ok |
| B | 1 | | ok | ok | ok |
| C | 1 | | | ok | Not ok |
Please some one help me with the flow for this challenged task.
Thanks in advance!