Would like to concatenate several cells and have that formula:
=[Product Codes]@row + "-" + [Unique ID]@row + "-" + [Deliverable Code]@row
Would like to add a cell only if the cell has content along with a dash preceding. Keeps coming back as unparseable. What am I doing wrong??
=[Product Codes]@row + "-" + [Unique ID]@row + "-" + [Deliverable Code]@row + IF([State]@row "", + "-" [State]@row)