Help require

Closed
ajay - Jul 23, 2010 at 07:53 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Jul 23, 2010 at 08:21 AM
Hello,
i want to use one cells value for dermining other cells value.

i.e if Column A contains a,b,c, or d, than column b value is for a,b,c =0 and for d=2 is it posssible


1 response

rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 766
Jul 23, 2010 at 08:21 AM
=IF(OR(A1="a", A1="b", A1="c"), 0, IF(A1="d", 2, ""))
0