I have a formula I need some assistance with. What I am trying to achieve is to check if the text in Cell A appears anywhere within the Cell C Column, if the text does appear then I want excel to print the data from the matching Cell C. What I have so far is;
=IF(ISERROR(MATCH(""&A3&"",$C$2:$C$8,0)),"",A3)
Now this formula does what I want but it prints the contents of Cell A, it is not simply a case of changing it to Cell C as that won't print the matching cell.
I'm sure this is something simple and thankyou in advance for your responses.