Hi all,
There are some data in the column to replace some words based on criteria in priority (from left to right) as follow :
BP --> Recall --> OS --> GOV --> Commercial --> FC --> Other Service
Source :
| Customer | Type |
| David | BP |
| Tom | Commercial |
| David | GOV |
| Mary | Recall |
| Susan | OS |
| Jim | FC |
| Susan | Other Service |
Output :
| Customer | Type |
| David | BP |
| Tom | Commercial |
| Mary | Recall |
| Susan | OS |
| Jim | FC |
Best Regards,
Johnny