Hi all, I am trying to do out a task where I'll extract out each keyword's occurrences, and count them to see the top 10 keywords. Any ways to do it out?
I would split my text on a \s (whitespace) with the text to columns tool (split to rows). Then make every single word lowercase (or upper case). Use the Regex tool or the Data Cleansing tool to remove unwanted characters. Summarize on word count and then use a sort descending on this field. After that you can use a sample for the top 10.
Sorry, do you have a workflow to show it out?