Hi,
I have to define the workflow for reconciliation please help me in this.
Condition: -
1. We cant use Multi-row formula.
2. First it will check for same check number in the same column (Check Number1), if it is found then it will search for same amount present in same column(Amount1) with opposite sign then it is reconciled and deleted from the data.
For e.g.
the above data is reconciled.
3. Then, it will check for same check number in the same column, if it is found then it will search for same amount present in another column(amount2) with same sign then it is reconciled and deleted from the data.
For e.g.
the above data is reconciled
Input Data: -
| Check Number1 | EMPLID | Amount1 | Check Number2 | Amount2 |
| 101 | A101 | -100 | | |
| 103 | A103 | -300 | | |
| 102 | A102 | -200 | | |
| 102 | A102 | | | -200 |
| 101 | A101 | -100 | | |
| 102 | A102 | -200 | | |
| 102 | A102 | 200 | | |
| 103 | A103 | -300 | | |
| 103 | A103 | | | -300 |
| 103 | A103 | 300 | | |
| 103 | A103 | -300 | | |
| 104 | A104 | 400 | | |
| 104 | A104 | -400 | | |
| 104 | A104 | | | -400 |
| 105 | A105 | -500 | | |
| 106 | A106 | -600 | | |
| 106 | A106 | | | -600 |
| 106 | A106 | | | -600 |
| 107 | A107 | -700 | | |
| 107 | A107 | | | -700 |
| 107 | A107 | | | 700 |
Desired Output: -
| Check Number1 | EMPLID | Amount1 | Check Number2 | Amount2 |
| 101 | A101 | -100 | | |
| 101 | A101 | -100 | | |
| 102 | A102 | | | -200 |
| 103 | A103 | -300 | | |
| 104 | A104 | | | -400 |
| 105 | A105 | -500 | | |
| 106 | A106 | | | -600 |
| 107 | A107 | | | 700 |