We posted the solution JSON file to Cloud Quest #10. 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.
In today’s Cloud Quest, you will find a dataset containing the titles, key words, and other data for all New York Times articles published from January 1, 2020, to December 31, 2020.
In your result, write a statement similar to this:
The word football appears [number] times in articles published in the Sports section on [day of week]s.
Hint: Unlike Designer Desktop, the Text To Columns tool in Designer Cloud requires the backslash character (\) to be used to escape values within strings. White space characters can be escaped with a backslash as they are in RegEx syntax. You can find more information in the Delimiters field in the Text To Columns tool's Configuration window.
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.
Fun one.
Here's my take
@RWvanLeeuwenIt looks like you've exposed two issues.
1. The ToString() function breaks if the column is already a string. If you remove the ToString() function around "day_of_week", your formula should work.
2. The location of the error is not being communicated correctly. It should say something like "Parse error at character (114)" instead of "Parse error at character (4)". It's character 4 on line 4.
Done!
First to use Standard Mode tools?? I might have cheated a bit since this gave me access to REGEXCountMatches. This also gave me a slightly different answer as football was used more than once in some keyword entries.
@JeffF
nice comment