Hi all,
I have 6 numbers in an ID that I want to split up with a hyphon. The expression I have been using is:
LEFT([assetid],2) + "-" + RIGHT([assetid],4)
So if I have 123456
I would get 12-3456. Which is great, The only issue I am having is that if the right side of the string is less than 4 digits, it doesnt seem to include it in the output.
Any help to rectify this so that I could have 12-3456 or 12-345 or 12-34 would be greatly appreciated!