Is it only in preview mode ?
I would like to replace these %20 between the spaces. But as the url is created dynamically I don’t know how and where to change this.
And I want the user to be able to reach the url just by writing it
Is it only in preview mode ?
I would like to replace these %20 between the spaces. But as the url is created dynamically I don’t know how and where to change this.
And I want the user to be able to reach the url just by writing it
Hi @antony
You can create a “slugify” formula so that spaces (represented by %20) are replaced by -
In the example above, you can see that:
lowercase
nocode formula to ensure all the text is lowercased.replaceAll()
" "
by dashes "-"
Current value
the text is formatted as a slugDoes that help?
Note, if you want to reuse this formula in different places of your project, you could create a global formula with a text parameter:
Then you could use that custom formula anywhere in your project:
Hi Joyce !
Thank you !