I am using 2 embedded IF statements in the attempt to produce either a string (cell&cell...) or a string with -SPARE are the end.
I know the inner IF statement works as expected. The result is setup to work on the FALSE, not TRUE for desired output.
My outer IF works when I do not include the inner IF, so I am guessing I have something out of alignment, or I am just not performing the correct embedded IF sequence.
The inner
Will string&-SPARE the line when cell B17 is full of # marks, else will populate with correct values.
The otter loop:
Also will check correctly and either populate the string, or populate string&-SPARE as expected.
When I combine them the only output is string&-SPARE, that is not my desired outcome.
Thank you in advance for the help.
I know the inner IF statement works as expected. The result is setup to work on the FALSE, not TRUE for desired output.
My outer IF works when I do not include the inner IF, so I am guessing I have something out of alignment, or I am just not performing the correct embedded IF sequence.
Code:
=IF('Table'!F23="TRUE",IF($B$17="########",L56&"-BI"&M56&"-"&C56&"-SPARE",L56&"-BI"&M56&"-"&C56),L56&"-BI"&M56&"-"&C56&"-SPARE")
The inner
Code:
IF($B$17="########",L56&"-BI"&M56&"-"&C56&"-SPARE",L56&"-BI"&M56&"-"&C56)
The otter loop:
Code:
IF('Table'!F23="TRUE",L56&"-BI"&M56&"-"&C56,L56&"-BI"&M56&"-"&C56&"-SPARE")
When I combine them the only output is string&-SPARE, that is not my desired outcome.
Thank you in advance for the help.