Formula with misplaced Paraenthesis

cadence

Well-known Member
Joined
Dec 6, 2005
Messages
528
Hello all,

just going a bit mad try to get the expression write, the argument I believe is all correct but I havenot closed it off properly

Any sugesstions

=IF(AND(AG5=$FE$53,AH5=$FE$54,IF(AND(DropList!$B$96=1,AJ5>0),FG5*$L$53,IF(DropList!$B$96=2,(AM5/($B$28+$B$29))*$L$54,IF(AND(DropList!$B$96=3,AJ5>0),FG5*$L$53+(((AM5/($B$28+$B$29)/$L$61))*$L$54),""))))

These are what the cells possible values are, if its of any help.
AG5 = symbol W
FE53 = symbol W
AH5 = symbol Y
FE54 = symbol Y
Droplist!B96 = 1,2 or 3
AJ5 = 1
FG5 =100 number
L53= 17% (tax)
B28 + B29 = number 1-100
AM5 = 200 number
L61 = .5 Exchange rate
L53= 14% (tax)

thanks of solutions on the brain teaser

Thanks Johnny
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
Hello,

I would suggest working it a step at a time from the inside out so that you can verify the individual steps. Also, in edit mode you can space things out with extra spaces to help ensure things are grouped as you think:
Code:
=IF(A1>5,IF(A1>10,True2,False2),False1)
Code:
=IF(A1>5,       IF(A1>10), True2, False2),      False1)
Good Luck!
 
Upvote 0

Forum statistics

Threads
1,214,904
Messages
6,122,169
Members
449,070
Latest member
webster33

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top