Nested if....?

D

Darin Kramer

Howdie...

Scenario...

cell A1 = Cats
A2 = Dogs
A3 = Mice
A4 = Bunnys

Depending on what a user chooses via a checkbox, the formulae will
append a True or False to cell B1 to B4...

So if user ticks Cats and Mice then b1 = True and B3 = True (b2 and b4
will be false)

My question is how do I see the result of the choice in another cell
(say A6).... so I want to see Cats and Mice as the answer in cell A6 in
this instance.

Obviously needs to change depending on what the user selects... he may
select one option, or all four....

Thanks

D




*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
 
T

Tom Ogilvy

=Trim(if(B1,A1,"") & " " & if(B2,A2,"") & " " & if(B3,A3,"") & " " &
if(B4,A4,""))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Conditional Formating another cell 2
ID multiple column headings 1
Max 7
Visible Row? 4
Data Form 1
Summing N/A's 5
Return entry in column above/below cell 2
Sum IF 3

Top