Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start 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 #372: A Header Reference Dataset from Excel Header Reference Letters

Yoshiro_Fujimori
15 - Aurora
15 - Aurora

My solution.

Spoiler
Workflow
Yoshiro_Fujimori_0-1685508273900.png


Formula Tool
  Name2 = ToNumber(Replace([Name], "Field_", ""))
  Mod26 = Mod([Name2], 26)
  Div26 = CEIL([Name2]/26)-1
  Char1 = IF [Div26]=0 THEN "" ELSE CharFromInt(64+[Div26]) ENDIF
  Char2 = IF [Mod26]=0 THEN "Z" ELSE CharFromInt(64+[Mod26]) ENDIF

  Column Letter = [Char1]+[Char2]
Robinvm
8 - Asteroid
Spoiler
Robinvm_0-1685515481963.png

 

bkclaw113
10 - Fireball

Spoiler
bkclaw113_0-1685547943260.png

 

Tgigs
8 - Asteroid

Here is my solution

Qiu
21 - Polaris
21 - Polaris

Practical one!

Spoiler
Challenge_373.PNG
elena_mazareanu
8 - Asteroid

Solved

ejhaley
8 - Asteroid
8 - Asteroid

This one was quite fun! Did a step-by-step walk through as well.

 

Spoiler
ejhaley_1-1685628741523.png

 

WaltReed
8 - Asteroid

This one was fun. Got it done in 3 steps. Tricky part was the formula for converting number to letter

Spoiler
Screen Shot 2023-06-01 at 10.39.05.pngScreen Shot 2023-06-01 at 10.39.24.png

 

myastarling
11 - Bolide

Here's my solution. I learned a new function today! :-)

rbrown
6 - Meteoroid

Definitely not the most efficient way, but it got to the destination