I need to split the following type of data into separate rows in tableau Prep Builder. There are only 2 columns: listing ID and Amenities like so:
Listing ID | Amenities
------------------------------------------------
123 | ["Oven", "Blankets", "WiFi", "Dryer", etc... ]
I would like to split them up like so:
Listing ID | Amenity
_________________________
123 | Oven
123 | Blankets
123 | WiFi
123 | Dryer
etc....
Is this possible?
I can split the amenities data into columns ok but this is not what I need.
If this is not possible in Prep Builder then I am ok with importing the data into SQLServer and using a SQL query if thats possible.
For those who come to this later on and are looking for the same. This is how I achieved what I needed: