Hello,
I'm a new member and trying to figure how I can remove duplicates (getting rid of repeated rows) in a specific column
So, I would like to remove the repeated WEB strings (IDs)-without touching NAME and ROLE columns, so I want to make it look like the table below (2nd one). I already tried multi formula tool with an expression of iif(isnull([Row-1:WEB]),[WEB],""), but it is not working as I desired.
(1st table). Original schema
(2nd table)Below is how it should like like...
| WEB | NAME | ROLE |
| www.tra.sa:808 | SAM RON | A1 |
| | DANIEL WATSON | F1 |
| | TOM STUART | A1 |
| | ALEX TASCI | F2 |
| | JACK MAYOR | F1 |
| | TONY UNDERDOWN | F2 |
| | MALEN SKURS | S2 |
| www.tra.sa:912 | SAM RON | A1 |
| | DANIEL WATSON | F1 |
| | TOM STUART | A1 |
| | ALEX TASCI | F2 |
| | JACK MAYOR | F1 |
| | TONY UNDERDOWN | F2 |
| | MALEN SKURS | S2 |
| www.tra.sa:66 | SAM RON | A1 |
| | DANIEL WATSON | F1 |
| | TOM STUART | A1 |
| | ALEX TASCI | F2 |
| | JACK MAYOR | F1 |
| | TONY UNDERDOWN | F2 |
| | MALEN SKURS | S2 |