โ11-25-2023 02:29 PM
Hey, I'm working on a project and I have data pill that brings me "last name first name" and I want to replace the order of them with formula..Didn't found any solution on workato doc..Please assist:)
Solved! Go to Solution.
โ04-23-2024 05:02 AM
Hi @osherachamim ,
Here is the formula for your requirement -
<map the datapill of the string type>.split(" ").last + " " + <map the datapill of the string type>.split(" ").first
โ04-23-2024 04:10 AM
@osherachamim did you already find a solution?
โ04-23-2024 05:02 AM
Hi @osherachamim ,
Here is the formula for your requirement -
<map the datapill of the string type>.split(" ").last + " " + <map the datapill of the string type>.split(" ").first
โ04-24-2024 03:16 AM
Hi @osherachamim ,
You can use the fomula like this.