Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
Pat Pat is offline
external usenet poster
 
Posts: 210
Default Help with Cell Formula

Below is a formula I'm trying to perfect. Goal, I need to compare cell $A$10
to $A$6 for a match (results for column B can only be 0 or 1). If A10 and A6
match, then I need to evaluate if $B$6=1. If A6=1 then I need the cell with
the formula to equal 0, if A6 <1 then I need the formula to then evaluate
the additional three cell references and if all is true the result should
return 1 if not it should return 0. Right now I'm getting a "False" result.
Results should only be limited to 0 or 1. Can you tell me what I've got
wrong?


The formula is in cell B14
=IF($A$10=$A$6,IF($B$6<0,0),IF('Skin Alterations'!$D$9="PU",IF('Skin
Alterations'!$E$9="A",IF('Skin Alterations'!$G9="I",1,0),0),0))

Thanks in advance for any help you can provide.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,533
Default Help with Cell Formula

HI

Look at the first part of your formula, .....If($B$6<0,0)......

replace the closing paranthesis with a comma and add a closing paranthesis
at the end of the formula:

=IF($A$10=$A$6,IF($B$6<0,0,IF('Skin Alterations'!$D$9="PU",IF('Skin
Alterations'!$E$9="A",IF('Skin Alterations'!$G9="I",1,0),0),0)))

Best reards,
Per

"Pat" skrev i meddelelsen
...
Below is a formula I'm trying to perfect. Goal, I need to compare cell
$A$10
to $A$6 for a match (results for column B can only be 0 or 1). If A10 and
A6
match, then I need to evaluate if $B$6=1. If A6=1 then I need the cell
with
the formula to equal 0, if A6 <1 then I need the formula to then evaluate
the additional three cell references and if all is true the result should
return 1 if not it should return 0. Right now I'm getting a "False"
result.
Results should only be limited to 0 or 1. Can you tell me what I've got
wrong?


The formula is in cell B14
=IF($A$10=$A$6,IF($B$6<0,0),IF('Skin Alterations'!$D$9="PU",IF('Skin
Alterations'!$E$9="A",IF('Skin Alterations'!$G9="I",1,0),0),0))

Thanks in advance for any help you can provide.


  #3   Report Post  
Posted to microsoft.public.excel.misc
Pat Pat is offline
external usenet poster
 
Posts: 210
Default Help with Cell Formula

SEE MY NEWER POST AS HAVE SIGNIFICANT TYPE IN INFORMATION BELOW!

"Pat" wrote:

Below is a formula I'm trying to perfect. Goal, I need to compare cell $A$10
to $A$6 for a match (results for column B can only be 0 or 1). If A10 and A6
match, then I need to evaluate if $B$6=1. If A6=1 then I need the cell with
the formula to equal 0, if A6 <1 then I need the formula to then evaluate
the additional three cell references and if all is true the result should
return 1 if not it should return 0. Right now I'm getting a "False" result.
Results should only be limited to 0 or 1. Can you tell me what I've got
wrong?


The formula is in cell B14
=IF($A$10=$A$6,IF($B$6<0,0),IF('Skin Alterations'!$D$9="PU",IF('Skin
Alterations'!$E$9="A",IF('Skin Alterations'!$G9="I",1,0),0),0))

Thanks in advance for any help you can provide.

  #4   Report Post  
Posted to microsoft.public.excel.misc
Pat Pat is offline
external usenet poster
 
Posts: 210
Default Help with Cell Formula

Thank Per, that helped sum, however, if the evaluation turns out false, I'm
still getting a "False" result in the formula, and would really prefer it be
a 0 if possible. I amended the formula as you suggested to the following:

=IF($A$10=$A$6,IF($B$6<0,0,IF('Skin Alterations'!$D$9="PU",IF('Skin
Alterations'!$E$9="A",IF('Skin Alterations'!$G9="I",1,0),0),0)))

I'm I missing a 0 somewhere near the end of the formula that would give the
zero result versus the "False" result?

Thanks again for your help!

"Per Jessen" wrote:

HI

Look at the first part of your formula, .....If($B$6<0,0)......

replace the closing paranthesis with a comma and add a closing paranthesis
at the end of the formula:

=IF($A$10=$A$6,IF($B$6<0,0,IF('Skin Alterations'!$D$9="PU",IF('Skin
Alterations'!$E$9="A",IF('Skin Alterations'!$G9="I",1,0),0),0)))

Best reards,
Per

"Pat" skrev i meddelelsen
...
Below is a formula I'm trying to perfect. Goal, I need to compare cell
$A$10
to $A$6 for a match (results for column B can only be 0 or 1). If A10 and
A6
match, then I need to evaluate if $B$6=1. If A6=1 then I need the cell
with
the formula to equal 0, if A6 <1 then I need the formula to then evaluate
the additional three cell references and if all is true the result should
return 1 if not it should return 0. Right now I'm getting a "False"
result.
Results should only be limited to 0 or 1. Can you tell me what I've got
wrong?


The formula is in cell B14
=IF($A$10=$A$6,IF($B$6<0,0),IF('Skin Alterations'!$D$9="PU",IF('Skin
Alterations'!$E$9="A",IF('Skin Alterations'!$G9="I",1,0),0),0))

Thanks in advance for any help you can provide.



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Help with Cell Formula

Try this: (all on one line)

=IF($A$10=$A$6,IF($B$6<0,0,
--AND('Skin Alterations'!$D$9="PU",
'Skin Alterations'!$E$9="A",
'Skin Alterations'!$G9="I")),0)

--
Biff
Microsoft Excel MVP


"Pat" wrote in message
...
Thank Per, that helped sum, however, if the evaluation turns out false,
I'm
still getting a "False" result in the formula, and would really prefer it
be
a 0 if possible. I amended the formula as you suggested to the following:

=IF($A$10=$A$6,IF($B$6<0,0,IF('Skin Alterations'!$D$9="PU",IF('Skin
Alterations'!$E$9="A",IF('Skin Alterations'!$G9="I",1,0),0),0)))

I'm I missing a 0 somewhere near the end of the formula that would give
the
zero result versus the "False" result?

Thanks again for your help!

"Per Jessen" wrote:

HI

Look at the first part of your formula, .....If($B$6<0,0)......

replace the closing paranthesis with a comma and add a closing
paranthesis
at the end of the formula:

=IF($A$10=$A$6,IF($B$6<0,0,IF('Skin Alterations'!$D$9="PU",IF('Skin
Alterations'!$E$9="A",IF('Skin Alterations'!$G9="I",1,0),0),0)))

Best reards,
Per

"Pat" skrev i meddelelsen
...
Below is a formula I'm trying to perfect. Goal, I need to compare cell
$A$10
to $A$6 for a match (results for column B can only be 0 or 1). If A10
and
A6
match, then I need to evaluate if $B$6=1. If A6=1 then I need the cell
with
the formula to equal 0, if A6 <1 then I need the formula to then
evaluate
the additional three cell references and if all is true the result
should
return 1 if not it should return 0. Right now I'm getting a "False"
result.
Results should only be limited to 0 or 1. Can you tell me what I've
got
wrong?


The formula is in cell B14
=IF($A$10=$A$6,IF($B$6<0,0),IF('Skin Alterations'!$D$9="PU",IF('Skin
Alterations'!$E$9="A",IF('Skin Alterations'!$G9="I",1,0),0),0))

Thanks in advance for any help you can provide.





Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How can I make a blank cell in a formula cell with a range of cell Vi Excel Discussion (Misc queries) 5 June 21st 07 02:46 PM
adding a formula in a cell but when cell = 0 cell is blank Mike T Excel Worksheet Functions 5 May 31st 05 01:08 AM
Cell Formula reference to cell Based On third Cell Content Gabriel Excel Discussion (Misc queries) 1 February 11th 05 06:36 AM
Cell Formula reference to cell Based On third Cell Content Gabriel Excel Discussion (Misc queries) 0 February 11th 05 05:35 AM
Cell doesn't show formula result - it shows formula (CTRL + ' doe. o0o0o0o Excel Worksheet Functions 6 November 19th 04 03:13 PM


All times are GMT +1. The time now is 05:55 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"