I have the following table:
| ColumnA | ColumnB | ColumnC |
|---|---|---|
| 1 | AB001 | TYPE-A |
| 2 | AB012 | TYPE-A |
| 3 | AB035 | TYPE-B |
| 4 | AB039 | TYPE-B |
| 5 | AB065 | TYPE-A |
| 6 | AB088 | TYPE-B |
I should get the output such that, if ColumnC is TYPE-A then it should save as a separate column (ColumnD) with output www.website.com/abc/AB001 if it is TYPE-B then it should be www.website.com/xyz/AB035. The output table should look like the following:
How do I do that?
