I'm racking my brain to get this and I am sure I am missing something simple?
I have 2 columns and want to concatenate them into a third. If there is data in Col 1 then there is no data in Col 2. I want Col 3 to print Col1 if there is data there. If there is data in Col2 then I want to Concatenate(last non-zero value from Col1,"_",Col2)
So if I have (pardon the dots, they are to get the spacing right)
Col1 .....Col2 .... Col3
01.....................01
............0013.....01_0013
What am I missing, tried this:
But I think maybe because Col 1 is general data not necessarily a number that it got messed. So then I tried to match for text and still nada.
??
I have 2 columns and want to concatenate them into a third. If there is data in Col 1 then there is no data in Col 2. I want Col 3 to print Col1 if there is data there. If there is data in Col2 then I want to Concatenate(last non-zero value from Col1,"_",Col2)
So if I have (pardon the dots, they are to get the spacing right)
Col1 .....Col2 .... Col3
01.....................01
............0013.....01_0013
What am I missing, tried this:
Code:
=IF($AE11="",AD11,CONCATENATE(INDEX($AD$2:$AD11,MATCH(9999,$AD$2:$AD11)),"_",AE11))
??
Last edited: