Want to get involved? We're always looking for ideas and content for Weekly Challenges.
SUBMIT YOUR IDEAThis was a good one to learn some new techniques with date time parsing, regex and different formulas. It was challenging
This was a nice challenge to explore datetime parse formulas. Your approach has enabled me to explore the date time parse concepts. Thanks.
If we're going to do this with formulas, we can do better than writing a Contains for every case. The second half of the string is pattern for the first half, so we can find each subfield in the second half and shift the index into the first half to read the value. Although that isn't date format practice so much as substring practice. Still, it works as long as the input matches the pattern of 10 chars data,10 chars pattern.
Workflow is the same one formula and a sort as several other responses, but the formula is
substring([Date Field],FindString([Date Field], "yyyy")-11,4)
+"-"+
substring([Date Field],FindString([Date Field], "mm")-11,2)
+"-"+
substring([Date Field],FindString([Date Field], "dd")-11,2)
classing this as a one tool solution 🤣