This seems like a pretty simple nested IF statement but it's not ever hitting the last condition. Any insight would be helpful.
I'm autogenerating an Asset #. I want the formula to look at the Asset Type and if it's a "Video" insert a "V" and the autogenerated number (this works), if there is something in the Suite cell, put that and the autogenerated number, If not put what's in State and the autogenerated number.
What am I missing?
=IF([Asset Type]@row = "Video", "V" + [Auto-Number]@row, IF(Suite@row <> " ", Suite@row + [Auto-Number]@row, (State@row + [Auto-Number]@row)))
Thanks!