I am completely new at Alteryx (~2 weeks) and am still trying to get familiar with all of the tools. I have some data in the following format:
Product Name (Customer Info) Product Description
I am trying to get the following:
Product Name Product Description
I have seen a couple of other questions and comments posted and one user suggested the following formula:
Regex_Replace([Field1]," \(.*?\)","")
I tried doing this. I made sure to replace [Field1] with the actual name of the column I'm trying to alter. The data preview shows output how I am expecting it (albiet without the space between Product Name and Product Description). However when I run the workflow it errors out completely and I get the error message below:
The field "" is not contained in the record. (Expression #1)
Regex_Replace([Field1]), " \(.*?\)","")
Does anyone know what I am doing wrong.