I have 3 columns that have information; Scene, Take and Revision.
The scene can be broken into sub-scene and sub-sub-scene etc... This column will always have a value.
Columns Take and Revision may or may not have a value.
I would like to add a fourth row called Full Name. This column will combine the information.
I was able to do this:
=LOWER("scn" + Scene1 + "_" + Take1 + "_" + Revision1)
The issue Im having there is the underscore ( _ ). If there isn't a value present I would need to omit the underscore. I was able to get IF(ISBLANK() working but not combines with my other statement: ( =LOWER("scn" + Scene1 + "_" + Take1 + "_" + Revision1) )
I was also not able to get the parent/child working as far as, if I have a scene 003 with sub-scene b and sub-sub-scene 5. I wasn't able to output scn003b5
Any guidance would be much appreciated!
