If reads "open" in other cell, returns "ABC"

Closed
Killienne - Jun 3, 2010 at 04:06 PM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Jun 3, 2010 at 04:26 PM
Hello,
I am manipulating a worksheet such that of the cell in column H reads "open" as opposed to anything else, the corresponding row cell in column M returns initials related to an employee assigned. How do I do that?



1 response

rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 766
Jun 3, 2010 at 04:26 PM
You need to provide more info about employee etc

but basic idea would be in cell M, you can have

=IF(H2="open", B2, "")

basically says that

if H2 is equal to open then show me value in B2

AND

if H2 is any thing other than Open, then show "" (blank)
0