Hello great minds of Smartsheet!
I have a sheet that is the amalgamation of a few others using datamesh and some forms.
As such I have 3 columns where project name, project number, or task number is listed, depending where it originated from. I would like to make a 4th column called Task Origin which would pull detail from one of the 3 other columns…I would then hide the other 3 columns to tidy it up!
[Task Number] [Project Name] [Project Number] [Task Origin]
Formula wise in the [Task Origin] column, I am looking at…
=IF(ISBLANK(ProjectName@row), [Project Number]@row,
IF(ISBLANK([Project Number]@row), ProjectName@row,
IF(ISBLANK([Project Number]@row:ProjectName@row), [Task Number]@row)))
When i remove the 3rd element of the IF statement, it works as expected. With the 3rd element in, the [Task Origin] Column is blank (no error message). I have tried a few different ways of writing the final ISBLANK section - i am not sure if you can look at multiple cells in an ISBLANK function?? I also tried an IF(AND(ISBLANK…version.
The Project Number column is populated from a Form which allows the person filling in the form to select Projects from a drop down list…could this be the issue - that the cell is not blank, just empty?
Thanks All!