Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have an basic question.
I have text object with value as "ABCD%EFG%"
How can I go about finding the position of % and display in another text object?
Thanks,
John
Try this
=Concat(If(Index('ABCD%EFG%', '%', ValueLoop(1, 100)) > 0, Index('ABCD%EFG%', '%', ValueLoop(1, 100))), ', ')
Try this
=Index('ABCD%EFG%', '%')
Thanks
The first occurrence displays as 5 but it is not bringing the second occurrence.
Thanks
I used this expression and it returns 8. But I need the position 4 also.
How can I do that?
=FindOneOf('ABC#DEV#','#',2)
Try this
=Concat(If(Index('ABCD%EFG%', '%', ValueLoop(1, 100)) > 0, Index('ABCD%EFG%', '%', ValueLoop(1, 100))), ', ')
Wow. That's an awesome advanced expression and it works.
Thanks much Sunny!