Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
In the below data, i want to pick the string present between /abc/ and #.
The output should be similar to expected output column.
Please help with the expression.
Hi Suraj. Try this
SubField(SubField([link], '/abc/', 2), '#', 1)
Also try this
=TextBetween(link & '#', '/abc/', '#')
Thanks everyone for the help!