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
lodoss118lodoss118 

How to add space to a post code?

Hi would i add a space after the third character in a post code so something that would

do this:          E111JY to E11 1JY
DigitOpticDigitOptic
Use the LEFT and RIGHT functions to split up the code...
 
LEFT({post_code_field},3)&" "&RIGHT({post_code_field}, 3)