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 #35: Data Cleansing Practice

mhou
8 - Asteroid

🙂

Sheniga
5 - Atom

For first 2, just using select is enough, 3rd used trim function with select, 4th this formula

IF Length([Safety Code])=6
THEN "SC"+[Safety Code]
ELSE Left([Safety Code],8)
ENDIF

schenkelpat
7 - Meteor

Solution

ALexAn
8 - Asteroid

Solution Challenge#35

jarrod
ACE Emeritus
ACE Emeritus

lots of Trim and PadLeft

Spoiler
jarrod_0-1590764243805.png

 

vaishabhinav_iitm
6 - Meteoroid

 

Spoiler

vaishabhinav_iitm_0-1590789508927.png
vaishabhinav_iitm_1-1590789541779.png

 

 

 

Sami1
7 - Meteor

Challenge done.Suggestions are welcome

Sami1
7 - Meteor

I used something different

 

 

IIF(StartsWith([Safety Code], "C"),"SC"+[Safety Code],[Safety Code])

 

Works!

MarielJinang14
7 - Meteor
Spoiler
MarielJinang14_0-1590847748905.png

 

vinodkumar_mandora
7 - Meteor

.