Hello,
I need assistance creating a helper column for the following scenario (bare with me).
I have a drop-down list in one column called Select Master Course Name which includes (Master Course Name, ID#).
I have created two helper columns to separate the Master Course Name and Master Course Code into individual columns so they can work properly in reports.
Master Course Code Formula - =RIGHT([Select Master Course Name]@row, LEN([Select Master Course Name]@row) - FIND(",", [Select Master Course Name]@row))
Master Course Name Formula - =IFERROR(LEFT([Select Master Course Name]@row, FIND(",", [Select Master Course Name]@row) - 1), "")
The issue that I'm running into now is because of the Formula in both of these helper columns, I can't update the drop-down list using Data Shuttle. The target file can not have formulas for mapping. What I would like to do is create another helper column that does what the Master Course Name column is currently doing and create an additional helper column to fill in the Master Course Name column so that it remains as a value so the Data Shuttle will work correctly for mapping.
Not an expert at this, but I really appreciate your insight and assistance. I've tried everything