View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
carlo carlo is offline
external usenet poster
 
Posts: 367
Default Multiple IF Statements

hi frank

where do you need it? In a formula, in VBA?

In vba it would look like you wrote it:

if x = 0 and xy then
'whatever you want to do, do it here
end if

in a formula it would be:
=if(and(x=0,xy))

hth
Carlo


On Jan 22, 10:03*am, wrote:
Is there a way to have a double condition If Statement?

Eg. If x = 0 and X Y Then...

I am getting an error trying this. *Please help!

Frank