G Guest Jul 6, 2006 #1 I am trying to build a spreadsheet to perform a arithematic when a phrase appears in a cell (ie: Yes or NO)
I am trying to build a spreadsheet to perform a arithematic when a phrase appears in a cell (ie: Yes or NO)
D Dav Jul 6, 2006 #2 If it is only 2 phrases use if statements, if the value you ar interested in is in cell A1 and the phrases are YEs and No If(a1="Yes",the calculation if it is yes,if(a1="No","the calculation i it is no","")) Eg =if(a1="Yes", c1*d1,if(a1="No",d1*e1,"")) Regards Da
If it is only 2 phrases use if statements, if the value you ar interested in is in cell A1 and the phrases are YEs and No If(a1="Yes",the calculation if it is yes,if(a1="No","the calculation i it is no","")) Eg =if(a1="Yes", c1*d1,if(a1="No",d1*e1,"")) Regards Da