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

klyuka
8 - Asteroid

Simple and beautiful.

mjones11
5 - Atom
Spoiler
Challenge_46.PNG
Greg_Murray
12 - Quasar

Solution attached

MartinLuus
7 - Meteor
 
sahinakos
8 - Asteroid
 
Rahma
7 - Meteor

Two possible solutions, both attached. 

joemkcarr
8 - Asteroid
 
Etienne
8 - Asteroid

Learnt a new string function here!!

Kale_Malcom
8 - Asteroid
Spoiler
Was able to get this all into one string formula to get an output the select tool recognizes as a date.

IF left([date],1) = "0" then "19" else "20" ENDIF + Substring([date],1,2) + "-" + Substring([date],3,2) + "-" + Substring([date],5,2)

wk_46_Snapshot.PNG
AndrewBanh
9 - Comet

Solution attached.