I am using this formula to combine cells in a single row to create a unique name/identifer. This formula works fine.
=Suite@row + "_" + Offering@row + "_" + Module@row + "_" + [Additional Asset Name Detail (as needed)]@row + "_" + [Asset Type]@row + "" + "_" + FY@row
Producing this result.
MA_Test 2 offering_Test 2 Module_Additional Name_FG_FY22
The issue come in because the [Additional Asset Name Detail (as needed)] data is OPTIONAL. When nothing is entered in this cell then the formula produces the double underline between MODULE and FG, as seen here.
MA_Test 2 offering_Test 2 Module__FG_FY22
How can is use ISBLANK or some other function to remove this extra underline when the optional field is blank?