function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Andrew Hoban 6Andrew Hoban 6 

Formula to rearrange characters in a text field

Hi all,

is there a formula I can use to rearrange characters in a text value?

The current text value = 890412

The formaula should change to = 12/04/89

Thanks
Best Answer chosen by Andrew Hoban 6
ManojjenaManojjena
Hi Andrew,

Please try with below .
RIGHT(yourField,2)&/& MID(yourField,3,2)&/& LEFT(yourField,2)
Thnaks
Manoj
 

All Answers

ManojjenaManojjena
Hi Andrew,

Please try with below .
RIGHT(yourField,2)&/& MID(yourField,3,2)&/& LEFT(yourField,2)
Thnaks
Manoj
 
This was selected as the best answer
Andrew Hoban 6Andrew Hoban 6
Thats worked, thanks!