Display a text when a certain cell is answer

Closed
dmcswine - 31 May 2010 à 02:54
rizvisa1 Posts 4478 Registration date Thursday 28 January 2010 Status Contributor Last seen 5 May 2022 - 31 May 2010 à 05:55
Hello,

How can I display a cell text when a certain cell is the answer? For example, when cell A2 is the answer, then the text in cell A1 is displayed; when cell B2 is the answer, then the text in cell B1 is displayed.

1 response

rizvisa1 Posts 4478 Registration date Thursday 28 January 2010 Status Contributor Last seen 5 May 2022 766
31 May 2010 à 05:55
Not know what your meant by "answer, hope this helps

=IF(IF(a1="", "", IF(A1=5, "Yes", "no"))

this formula is saying

if A1 = blank then show nothing
If a1 is 5 then show YES
if a1 not equal to 5 then show "No"