I want to create a new column from data in an existing column. I need to find the file extension in the existing column then put text into a new column based on the extension. See below:
ExistingCol
filename.ai
filename.png
filename.docx
filename.pptx
NewCol
Adobe Illustrator
Image
Word Doc
Powerpoint
I am using the Formula tool to create a new column and have written an IF statement to test if I can do this and am getting a parse error and I'm not sure why.
IF contains([FileName],".ai") then
"Adobe Illustrator"
ENDIF
Why isn't this working?