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

moakano
6 - Meteoroid

Good challenge

MarielJinang14
7 - Meteor
Spoiler
MarielJinang14_0-1590848086442.png

 

lkaushik
6 - Meteoroid

Completed

ALexAn
8 - Asteroid
Spoiler
46.PNG

My solution

KRISHAR7AL
6 - Meteoroid

Here is my solution 

vinodkumar_mandora
7 - Meteor

.

KilianL
Alteryx Alumni (Retired)

My take on this challenge:

 

Spoiler
iif(Left([date], 1)='1','20'+Right([date],6),'19'+Right([date],6))046 - DateParse - KL.png
Vikash_kumar
8 - Asteroid

solution attached

Sylvana
8 - Asteroid

My solution.

kennetheng
8 - Asteroid

I did things a little differently. I used three formula tools: 

1. Extract the LEFT number

2. Change that extraction to either 19 or 20 depending on if it was a 1 or a 0. 

3. Combine the new extraction with the RIGHT 6 characters from the original column. 


Then I used the Date/Time tool to format.