I was wondering if it is possible to insert two IF functions in one cell.
For instance =IF(A1="x","a","") and IF(A1="y", "b","")
Thanks.
=IF(A1="x","a",IF(A1="y","b",""))

Signature
Gary''s Student - gsnu200797
You do what is called "nesting".
=If(A1="x","a",If(A1="y","b",""))

Signature
HTH,
RD
---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
>I was wondering if it is possible to insert two IF functions in one cell.
>
> For instance =IF(A1="x","a","") and IF(A1="y", "b","")
>
> Thanks.