Need to have a cell display text based onentries into another cell

D

Dinger1216

Version: 2004

I am looking for a formula that will allow me to have a cell on one worksheet display text based on the user input on a cell in another worksheet.

For example, if user enters "S" in C53 of worksheet January, I would like to see "S" in "D7" of worksheet Summary and if the user enters "H", I would like to see "H", etc.

I cannot use "Paste Link" as I do not want all text to transfer over (ex: if user enters "X", then I would like the other cell to stay blank).

Thanks!
 
J

JE McGimpsey

Version: 2004

I am looking for a formula that will allow me to have a cell on one worksheet
display text based on the user input on a cell in another worksheet.

For example, if user enters "S" in C53 of worksheet January, I would like to
see "S" in "D7" of worksheet Summary and if the user enters "H", I would like
to see "H", etc.

I cannot use "Paste Link" as I do not want all text to transfer over (ex: if
user enters "X", then I would like the other cell to stay blank).

One way:

=IF(OR(January!C53="S", January!C53="H"),January!C53, "")


Another:

=IF(SUM(COUNTIF(January!C53,{"S","H"})),January!C53,"")
 

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

Top