Example: I want to be able to display "Cathy's Check" in cell G4 by typing
the number "2" in cell B4 but I also want to display "John's Check" in cell
G4 by typing the number "3" in cell B4 as well. Can some one help me please!

Re: multiple functions in a single cell by Bernard

Bernard
Fri Mar 14 14:29:23 CDT 2008

=IF(G4=2,"Cathy's Check", if(G4=3,"John's Check" ,"")

This is display nothing if G4 is other than 2 or 3
If the list gets longer, a lookup function would be appropriate.
best wishes
--
Bernard V Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme
remove caps from email

"John C." <John C.@discussions.microsoft.com> wrote in message
news:4A5EA553-8ECF-439E-9F7F-591AD723E2E5@microsoft.com...
> Example: I want to be able to display "Cathy's Check" in cell G4 by typing
> the number "2" in cell B4 but I also want to display "John's Check" in
> cell
> G4 by typing the number "3" in cell B4 as well. Can some one help me
> please!



RE: multiple functions in a single cell by GarysStudent

GarysStudent
Fri Mar 14 14:33:02 CDT 2008

Use an IF statement in G4:

=IF(B4=2,"Cathy's Check",IF(B4=3,"John'sCheck",""))
--
Gary''s Student - gsnu200773


"John C." wrote:

> Example: I want to be able to display "Cathy's Check" in cell G4 by typing
> the number "2" in cell B4 but I also want to display "John's Check" in cell
> G4 by typing the number "3" in cell B4 as well. Can some one help me please!

RE: multiple functions in a single cell by MikeH

MikeH
Fri Mar 14 14:35:00 CDT 2008

Try this in G4

=CHOOSE(B4,"","Cathy's Check","John's check")

Mike

"John C." wrote:

> Example: I want to be able to display "Cathy's Check" in cell G4 by typing
> the number "2" in cell B4 but I also want to display "John's Check" in cell
> G4 by typing the number "3" in cell B4 as well. Can some one help me please!