RETURN FORMULA

  • Thread starter Thread starter Rob
  • Start date Start date
R

Rob

I need a formula that would return a value IN CELL C1 of
YES if cells A1 & B1 have values of YES.
 
-----Original Message-----
I need a formula that would return a value IN CELL C1 of
YES if cells A1 & B1 have values of YES.
.
You can do this using the combination of the 'if'
and 'and' functions.

In cell c1 type "=if(and(a1="Yes",a2="Yes"),"Yes","No")
 
Back
Top