Hi,
I currently have a column that efforts to basically make a url-friendly version of the record name using this string.
LOWER(SUBSTITUTE(artist, " ", “-”))
That takes the Artist’s name column and removes spaces and replaces them with dashes. Is the...