How do I set up a function that...

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I set up a function that allows for me to say that if any cell in
column a equals a particular number than another cell in that row will equal
a name?
 
One way:

B1: =IF(A1=<particular number>,"a name", "")

Copy down as far as necessary.
 
Back
Top