Hi,
Need help to get the below output. Thank you in advance.
Sample Input:
| Col A/Col B | Col C | Col D | Col E | Col F |
| 1 | 123456 | ABC | | |
| ABC123 | | | Ax | Note 1 |
| DEF187 | | | Ax | Note 2 |
| GHF197 | | | Ax | Note 2 |
| HML321 | | | Ax | Note 2 |
| LKH456 | | | Ax | Note 1 |
| LMB879 | | | Ax | Note 1 |
| | | | | |
| *Note 1 |
| **Note 2 |
Sample Output: Based on the Note in Col F, need to add * if it has Note 1 or ** if it has Note 2 to data in Col E
| Col A/Col B | Col C | Col D | Col E | Col F |
| 1 | 123456 | ABC | | |
| ABC123 | | | Ax* | Note 1 |
| DEF187 | | | Bx** | Note 2 |
| GHF197 | | | Cx** | Note 2 |
| HML321 | | | Dx** | Note 2 |
| LKH456 | | | Ex* | Note 1 |
| LMB879 | | | Fx* | Note 1 |
| | | | | |
| *Note 1 |
| **Note 2 |