Brute
02-15-2014, 07:18 PM
My brain is about to explode.. need help making this formula work.. I am working on an interactive microsoft excel sheet and running into a problem.. I need all of this information to be determined in one cell. It bases its info off of three cells, we will call them cells B2 C2 and D2, answer will be generated in cell E2.
Needs to determine the following.
If value D2 is less than .375 then E2= (((((B2+B2+C2+C2)/4)-D2)*D2)*13.6)
If value D2 equal to / greater than .375 and less than .500 then E2 = (((((B2+B2+C2+C2)/4)-D2)*D2)*13.3)
If value D2 is equal to or greater than .500 then E2 = (((((B2+B2+C2+C2)/4)-D2)*D2)*13.0)
My mind hit its brink at this formula. and it doesnt work, but its on the right track i believe.. i need to figure a way to determine the equal to parts and have it actually use the correct formulas..
Formula I have.. which isnt generating correct numbers after checking with a calculator by hand.
=IF(D2<0.375, (((((B2+B2+C2+C2)/4)-D2)*D2)*13.6), IF(D2>0.500, (((((B2+B2+C2+C2)/4)-D2)*D2)*13), ((((B2+B2+C2+C2)/4)-D2)*D2)*13.3))
Thanks
Needs to determine the following.
If value D2 is less than .375 then E2= (((((B2+B2+C2+C2)/4)-D2)*D2)*13.6)
If value D2 equal to / greater than .375 and less than .500 then E2 = (((((B2+B2+C2+C2)/4)-D2)*D2)*13.3)
If value D2 is equal to or greater than .500 then E2 = (((((B2+B2+C2+C2)/4)-D2)*D2)*13.0)
My mind hit its brink at this formula. and it doesnt work, but its on the right track i believe.. i need to figure a way to determine the equal to parts and have it actually use the correct formulas..
Formula I have.. which isnt generating correct numbers after checking with a calculator by hand.
=IF(D2<0.375, (((((B2+B2+C2+C2)/4)-D2)*D2)*13.6), IF(D2>0.500, (((((B2+B2+C2+C2)/4)-D2)*D2)*13), ((((B2+B2+C2+C2)/4)-D2)*D2)*13.3))
Thanks