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

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.
 
D

David Biddulph

=IF(B2=K2,A2,"")
I assume you want a blank in L if B and K are not the same?
 
Top