We posted the solution JSON file to Cloud Quest 9. Check it out and let us know what you think! Send suggestions to academy@alteryx.com or leave a comment below!
For more detailed instructions on how to import and export Designer Cloud workflow files, check out the pinned article Cloud Quest Submission Process Update.
For this week's quest, you received product data that was, shall we say... interestingly formatted in Excel with key product information stored at the top of the file. Each data column contains three lines of header information per product (product, market, and type). To make downstream analysis possible, reformat this information to be shown in rows for each product.
Hint: If you are used to the configuration terminology of the Transpose tool in Designer Desktop:
If you find yourself struggling with any of the tasks, feel free to explore these interactive lessons in the Maveryx Academy for guidance:
Once you have completed your quest, go back to your Analytics Cloud library.
Good one! Always love messy data...
Funny thing that I still cannot extract the first three rows using
REGEX_Match('P|M|T', Left([F1], 1), icase=1)
Even though the Designer Cloud automatically shows the icase argument when using auto-complete.
The Designer Cloud Experience states: Parse error at character (37): Unknown column name icase. (Expression #2)
I'll use a workaround in the meantime, but please provide a fix for Designer Cloud so I can actually use string calcs without errors
I am happy to see the recordID can be applied to the original row order! Awesome!
Here's my solution
Please use the formula below.
REGEX_Match([F1], "P|M|T", 1)
Basically, do not contain "icase =" in the formula. I think that it is just a guide.
Interesting one. I'm not sure I did this in the the most elegant manner, but hey ho.
10 up! WOOO!