The issue:
I have cells containing strings, example:
Cell A | Cell B | Cell C | Cell D | Cell E | .....
1234 256 | 5424H-84 | 47-1223-7z-334| TARGET CELL | 12 fw e | .....
What formula do I need to look at the contents of Cell C for the characters "7z" or even "23" or "z-3", if present then to combine cell A and Cell B in to Cell D?
I've tried many things that I can think of and yet either get 0 or blank lines...
CodePudding user response:
Try:
=IF(IFERROR(SEARCH("7z",C1,1),-1)>0,CONCATENATE(A1,B1))
