Whats wrong with my formula

ksuthy

New Member
Joined
Jan 29, 2019
Messages
6
Hello,

anyone want to take a stab at what is wrong with my formula?

=if(and([@inches]=0,[@[Length feet]]=6),6,if(and([@inches]=0,[@[Length feet]]=8),8,if(and([@inches]=0,[@[Length feet]]=10),10,if(and([@inches]=0,[@[Length feet]]=12),12,if(and([@inches]=0,[@[Length feet]]=14),14,if(and([@inches]=0,[@[Length feet]]=16),16,if(and([@inches]=0,[@[Length feet]]=18),18,if(and(([@inches]=0,[@[Length feet]]=20),20,if(and([@inches]=0,[@[Length feet]]=22),22,if((and([@inches]=0,[@[Length feet]]=24),24,IF(SUM([@[Length feet]]+([@inches]/12))<6),6,IF((AND(SUM([@[Length feet]]+([@inches]/12))<8,[@[Length feet]]+([@inches]/12)>6)),8,IF(AND(SUM([@[Length feet]]+([@inches]/12))<10,[@[Length feet]]+([@inches]/12)>8),10,IF(AND(SUM([@[Length feet]]+([@inches]/12))<12,[@[Length feet]]+([@inches]/12)>10),12,IF(AND(SUM([@[Length feet]]+([@inches]/12))<14,[@[Length feet]]+([@inches]/12)>12),14,IF(AND(SUM([@[Length feet]]+([@inches]/12))<16,[@[Length feet]]+([@inches]/12)>14),16,IF(AND(SUM([@[Length feet]]+([@inches]/12))<18,[@[Length feet]]+([@inches]/12)>16),18,IF(AND(SUM([@[Length feet]]+([@inches]/12))<20,[@[Length feet]]+([@inches]/12)>18),20,IF(AND(SUM([@[Length feet]]+([@inches]/12))<22,[@[Length feet]]+([@inches]/12)>20),22,FALSE))))))))))))))))))))
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Why do you think there's something wrong with it?

What do you want it to do?

What is it doing instead?
 
Upvote 0
you did not lose the brackets, they are in a wrong places

(​
66​
)​
66​
+​
17​
,​
56​
/​
17​
<​
9​
=​
21​
>​
8​
@​
54​
[​
81​
]​
81​
 
Upvote 0
Bit hard to evaluate when you are using Named Ranges !
If you highlight the formula in the formula bar each parens is a different colour, that should give a start as to where the one is missing
 
Upvote 0
example :
,if((and([@inches]=0,[@[Length feet]]=24),24,.........
after that the rest of the "formula" is a logical test

and why

SUM([@[Length feet]]+([@inches]/12))
it looks like SUM SUM instead of SUM
SUM([@[Length feet]],[@inches]/12)

and many more errors like above

use intellisense to check this "string" :)
 
Last edited:
Upvote 0
omg OK I solved it-its easiest for me because things are highlighted- thanks for the input.

here is the formula corrected :
=IF(AND([@inches]=0,[@[Length feet]]=6),6,IF(AND([@inches]=0,[@[Length feet]]=8),8,IF(AND([@inches]=0,[@[Length feet]]=10),10,IF(AND([@inches]=0,[@[Length feet]]=12),12,IF(AND([@inches]=0,[@[Length feet]]=14),14,IF(AND([@inches]=0,[@[Length feet]]=16),16,IF(AND([@inches]=0,[@[Length feet]]=18),18,IF(AND([@inches]=0,[@[Length feet]]=20),20,IF(AND([@inches]=0,[@[Length feet]]=22),22,IF(AND([@inches]=0,[@[Length feet]]=24),24,IF(SUM([@[Length feet]]+([@inches]/12))<6,6,IF(AND(SUM([@[Length feet]]+([@inches]/12))<8,SUM([@[Length feet]]+([@inches]/12)>6)),8,IF(AND(SUM([@[Length feet]]+([@inches]/12))<10,SUM([@[Length feet]]+([@inches]/12)>8)),10,IF(AND(SUM([@[Length feet]]+([@inches]/12))<12,SUM([@[Length feet]]+([@inches]/12)>10)),12,IF(AND(SUM([@[Length feet]]+([@inches]/12))<14,SUM([@[Length feet]]+([@inches]/12)>12)),14,IF(AND(SUM([@[Length feet]]+([@inches]/12))<16,SUM([@[Length feet]]+([@inches]/12)>14)),16,IF(AND(SUM([@[Length feet]]+([@inches]/12))<18,SUM([@[Length feet]]+([@inches]/12)>16)),18,IF(AND(SUM([@[Length feet]]+([@inches]/12))<20,SUM([@[Length feet]]+([@inches]/12)>18)),20,IF(AND(SUM([@[Length feet]]+([@inches]/12))<22,SUM([@[Length feet]]+([@inches]/12)>20)),22,FALSE)))))))))))))))))))


I used this for a l
 
Upvote 0
but I still see SUM SUM :) :) :)

incorrect: SUM([@[Length feet]]+([@inches]/12)>20))
correct: SUM([@[Length feet]],[@inches]/12)>20,
or ([@[Length feet]]+[@inches]/12)>20,

SUM() ->>> syntax
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,684
Members
448,977
Latest member
dbonilla0331

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