I have a cell in Excel filled with URL link, that goes
https://something.com/team?WT_from=TopMenu&WT_fname1=team
And I need to remove all parameters ?WT_from=TopMenu&WT_fname1=team so that the cell will look like this: https://something.com/team
Although all cells differs, hence there are no two same parameters. That means, i need a general formula removing all content behind the first quistionmark.
I tried to experiment with TRIM function, but none work. Any advice would be appreciated. Thanks.
=LEFT(A1,FIND("?",A1&"?")-1)- JvdV