Weekly Challenges

Solve the challenge, share your solution and summit the ranks of our Community!

Also available in | Français | Português | Español | 日本語
IDEAS WANTED

Want to get involved? We're always looking for ideas and content for Weekly Challenges.

SUBMIT YOUR IDEA

Challenge #46: Formatting a Date from an Integer

cristiane_dsc
7 - Meteor

This is my solution

SWilbur
7 - Meteor
Spoiler
Challenge #46.JPG

 

AndrewPowell
8 - Asteroid

slightly different from the published solution, I liked separating out the processes to make it easier to follow

Spoiler
Screenshot 2024-08-23 125101.png

Linas
8 - Asteroid
Spoiler
DateTimeParse(IIF(LEFT([date], 1) == '1', '20', '19') + RIGHT([date], 6), '%y%m%d')
Supriya2203
8 - Asteroid

My solution