Want to get involved? We're always looking for ideas and content for Weekly Challenges.
SUBMIT YOUR IDEAFor first 2, just using select is enough, 3rd used trim function with select, 4th this formula
IF Length([Safety Code])=6
THEN "SC"+[Safety Code]
ELSE Left([Safety Code],8)
ENDIF
lots of Trim and PadLeft
I used something different
IIF(StartsWith([Safety Code], "C"),"SC"+[Safety Code],[Safety Code])
Works!