Hi all,
I'm trying to make a new formula column that is auto-filled based on other columns.
It's a fairly simple argument where if a column one contains anything then return column 1, but if column 2 contains anything then return column 2 and so on. I have 9 different columns so the formula could be quite long. I'm unable to choose the coalesce function for some reason.
I was hoping that this formula would work but I get errors when inputting it.
If(Not(IsBlank('column1')),'column1',If(not(isblank('column2')),'column2','column3'))
Any help is appreciated. Thanks in advance.