Free Trial

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

akuma38
7 - Meteor

 My solution

mattnason1
9 - Comet

Quick easy one.

 

mattbov92
8 - Asteroid

My Solution

christopher_ontkean
8 - Asteroid

Solution

Leonard_Ellis
7 - Meteor

solution:

Rajan_Sutradhar
5 - Atom

Hi Everyone,

 

My first success.😁

 

To solve this challenge I used RegEx & Formula tool.

 

Broke the string using expression .(\d{2})(\d{2})(.+) in regex, then used

formula to concatenate

 

tostring(if left([date],1) = "0" then 19
else 20
endif) + [RegExOut1]+ "-" + [RegExOut2] + "-"+[RegExOut3]

 

everything in one column & changed the datatype to date.

 

 

 

jamescaosydney
7 - Meteor

Challenge 46 solution

tinanguyen16
7 - Meteor

Solution

AngelaFowler
5 - Atom

Here's my attempt 😃

cfulton1
7 - Meteor

Solution attached