Sep 22, 2004 #1 djmousie Technical User Oct 10, 2001 164 US I'm trying to create a nested if this is giving me a "#VALUE". If you break up the IF statements, they work fine by themselves, but when combined, I get the #VALUE. Any thoughts? =IF(H65<F67,0),IF(H62<(H65-F67),(H65-F67),SUM(H60,H61,H62,H63))
I'm trying to create a nested if this is giving me a "#VALUE". If you break up the IF statements, they work fine by themselves, but when combined, I get the #VALUE. Any thoughts? =IF(H65<F67,0),IF(H62<(H65-F67),(H65-F67),SUM(H60,H61,H62,H63))
Sep 22, 2004 #2 S SkipVought Programmer Dec 4, 2001 47,492 US Hi, First CLOSE Parenthesis in the wrong place [tt] =IF(H65<F67,0,IF(H62<(H65-F67),(H65-F67),SUM(H60,H61,H62,H63))) [/tt] Skip, [red]Be advised:[/red] When transmitting sheet music... If it ain't baroque, don't fax it! Upvote 0 Downvote
Hi, First CLOSE Parenthesis in the wrong place [tt] =IF(H65<F67,0,IF(H62<(H65-F67),(H65-F67),SUM(H60,H61,H62,H63))) [/tt] Skip, [red]Be advised:[/red] When transmitting sheet music... If it ain't baroque, don't fax it!
Sep 22, 2004 Thread starter #3 djmousie Technical User Oct 10, 2001 164 US Thanks for the quick reply, i knew it had something to do with my paranthesis. Upvote 0 Downvote
Sep 22, 2004 #4 straybullet IS-IT--Management Jun 5, 2003 593 US Try this: =IF(H65<F67,0,IF(H62<(H65-F67),(H65-F67),SUM(H60:H63))) The "value-if-false" portion now performs the 2nd "if". Let them hate - so long as they fear... Lucius Accius Upvote 0 Downvote
Try this: =IF(H65<F67,0,IF(H62<(H65-F67),(H65-F67),SUM(H60:H63))) The "value-if-false" portion now performs the 2nd "if". Let them hate - so long as they fear... Lucius Accius
Sep 22, 2004 #5 AnotherHiggins Technical User Nov 25, 2003 6,259 US Delete the [red]red[/red] ")" and add the [blue]blue[/blue] one. Code: =IF(H65<F67,0[red])[/red],IF(H62<(H65-F67),(H65-F67),SUM(H60,H61,H62,H63))[blue])[/blue] John Every generalization is false, including this one. Upvote 0 Downvote
Delete the [red]red[/red] ")" and add the [blue]blue[/blue] one. Code: =IF(H65<F67,0[red])[/red],IF(H62<(H65-F67),(H65-F67),SUM(H60,H61,H62,H63))[blue])[/blue] John Every generalization is false, including this one.
Sep 22, 2004 #6 AnotherHiggins Technical User Nov 25, 2003 6,259 US Whoa, I'm just a *little* slow, huh? I tried to make it too pretty. John Every generalization is false, including this one. Upvote 0 Downvote
Whoa, I'm just a *little* slow, huh? I tried to make it too pretty. John Every generalization is false, including this one.