Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a column valuse like this UserDirectory=MZDMG; UserId=krishk.
I need to get the output like this MZDMG/krishk
Please help.
There are multiple ways, this is one option:
=replace(subfield([mystringfield], 'Directory=',2), '; UserId=','/')
Here's another:
=TextBetween([mystringfield], 'UserDirectory=',';')
& '/'
& TextBetween([mystringfield], 'UserId=','')