Hi I have a data here that has a field with lacking of figures I want to add digits based on a condition using formula tool. Example below:
| Code | Salary |
| 222 | 10000 |
| 333 | 20000 |
| 356 | 30000 |
Expected output
| Code | Salary |
| 222 | 12000 |
| 333 | 23000 |
| 356 | 30000 |
I just want to add some figures if the code is "222" and "333". How can I perform this?