View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming,microsoft.public.excel
greg greg is offline
external usenet poster
 
Posts: 59
Default conditional formulas in Excel

thanks barb,
looks good!

"Barb Reinhardt" wrote in message
...
Fry something like this

=if(and(Box1,Box2),True,False)
alternatively
=if(or(Box1,Box2),True,False)

"greg" wrote:

Hello,
I am looking to do some formulas in excel.
I have some check boxes. With named cells.
and these check boxes have true/false values.
but I would like to use conditional formulas with these.
such as true and false. true or false
so if my named cells are
Box1 = true
Box2 = false

I would like to build Box1 and Box2. Or, Box1 or Box2
But if I do that - =Box1 and Box2. I get an error
If I do
=Box1 & Box2 I get TRUETRUE

Is there a way to do this?

thanks