Return text in Column A if Column B and Column K match

  • Thread starter Thread starter jeannie v
  • Start date Start date
J

jeannie v

Greetings Experts:

I need help in doing what should be very simple...I would like a formula or
a macro that will return the text from Column A and plant in Column L if
Column B and Column K are the same.

Example: B = 12345 K=12345 Text in Column A is entered in Column L

Any help you can provide would be greatly appreciated.
 
=IF(B2=K2,A2,"")
I assume you want a blank in L if B and K are not the same?
 
With a formula...

Entered in L1 then copied down as needed:

=IF(B1=K1,A1,"")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top