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 #1: Join to Range

Saravanamuthu
6 - Meteoroid
 
dpencheva
8 - Asteroid

Hi this is my first post in the community and my first weekly challenge 🙂 I went through the solution but my idea is a little bit different. I wrote switch function, in Formula step, which contains ranges from the look up table and the result is a new column called Region.

harii8
6 - Meteoroid

A little late, but thought I'll start now.

olsun
5 - Atom

 

Spoiler

I came up with 2 possible solutions:

  • Append and Filter

Appends the Sales Person Area data to the Customer Postal data, then filters based on the Postal Area being within the Lower Postal and Upper Postal range.

 

  • Generate Rows and Join

Generate rows for each Postal Area within the Postal Range, then join to the Customer Postal data using Postal Area.

 

The quicker, and smaller memory footprint, is the Generate Rows and Join solution.
challenge_1_my_solution.png

 

 

Attaching my Solution for sharing.

 

samahmed28
6 - Meteoroid

Solved

hayley9
8 - Asteroid

Here is my solution

Pang_Hee_Choy
12 - Quasar
 
rohanonline
10 - Fireball

Here's my solution.

Gopinaath
8 - Asteroid

Here is my solution

SahinC
7 - Meteor
Spoiler
Challenge1.png

My solution