Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Does anybody know of a good website which has examples of the way in which
Excel performs calculations when there is more than one operator in the calculation? I understand the brackets go around the 'easy' bit, in order to tell Excel to do that bit first, but if the calculation has more than 2 operators, I don't know where the other sets of brackets go. Any help would be appreciated. Thank you. Louise |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
BODMAS
Brackets Of Divide Multiply Add Subtract -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Louise" wrote in message ... Does anybody know of a good website which has examples of the way in which Excel performs calculations when there is more than one operator in the calculation? I understand the brackets go around the 'easy' bit, in order to tell Excel to do that bit first, but if the calculation has more than 2 operators, I don't know where the other sets of brackets go. Any help would be appreciated. Thank you. Louise |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hello, thank you for your reply.
Unfortunately, this doesn't really help me. I am already aware of the actual order, what I am unsure of is where the different sets of brackets go when the calculation contains more than two operators. Louise "Bob Phillips" wrote: BODMAS Brackets Of Divide Multiply Add Subtract -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Louise" wrote in message ... Does anybody know of a good website which has examples of the way in which Excel performs calculations when there is more than one operator in the calculation? I understand the brackets go around the 'easy' bit, in order to tell Excel to do that bit first, but if the calculation has more than 2 operators, I don't know where the other sets of brackets go. Any help would be appreciated. Thank you. Louise |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
That depends upon what order you want them to be processed.
-- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Louise" wrote in message ... hello, thank you for your reply. Unfortunately, this doesn't really help me. I am already aware of the actual order, what I am unsure of is where the different sets of brackets go when the calculation contains more than two operators. Louise "Bob Phillips" wrote: BODMAS Brackets Of Divide Multiply Add Subtract -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Louise" wrote in message ... Does anybody know of a good website which has examples of the way in which Excel performs calculations when there is more than one operator in the calculation? I understand the brackets go around the 'easy' bit, in order to tell Excel to do that bit first, but if the calculation has more than 2 operators, I don't know where the other sets of brackets go. Any help would be appreciated. Thank you. Louise |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
A basic example........
My calculation is =10+10*2+2*10 My total should therefore be 420. Where do the brackets go, and why, in order to get to the right answer??? Louise "Bob Phillips" wrote: That depends upon what order you want them to be processed. -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Louise" wrote in message ... hello, thank you for your reply. Unfortunately, this doesn't really help me. I am already aware of the actual order, what I am unsure of is where the different sets of brackets go when the calculation contains more than two operators. Louise "Bob Phillips" wrote: BODMAS Brackets Of Divide Multiply Add Subtract -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Louise" wrote in message ... Does anybody know of a good website which has examples of the way in which Excel performs calculations when there is more than one operator in the calculation? I understand the brackets go around the 'easy' bit, in order to tell Excel to do that bit first, but if the calculation has more than 2 operators, I don't know where the other sets of brackets go. Any help would be appreciated. Thank you. Louise |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=((10+10)*2+2)*10
Normal arithmatic applies x / + - |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If you know how to do it on paper, do the same in Excel
=((10+10)*2+2)*10 -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Louise" wrote in message ... A basic example........ My calculation is =10+10*2+2*10 My total should therefore be 420. Where do the brackets go, and why, in order to get to the right answer??? Louise "Bob Phillips" wrote: That depends upon what order you want them to be processed. -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Louise" wrote in message ... hello, thank you for your reply. Unfortunately, this doesn't really help me. I am already aware of the actual order, what I am unsure of is where the different sets of brackets go when the calculation contains more than two operators. Louise "Bob Phillips" wrote: BODMAS Brackets Of Divide Multiply Add Subtract -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Louise" wrote in message ... Does anybody know of a good website which has examples of the way in which Excel performs calculations when there is more than one operator in the calculation? I understand the brackets go around the 'easy' bit, in order to tell Excel to do that bit first, but if the calculation has more than 2 operators, I don't know where the other sets of brackets go. Any help would be appreciated. Thank you. Louise |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
"Louise" wrote in message
... "Bob Phillips" wrote: "Louise" wrote in message ... "Bob Phillips" wrote: (replace somewhere in email address with gmail if mailing direct) "Louise" wrote in message ... Does anybody know of a good website which has examples of the way in which Excel performs calculations when there is more than one operator in the calculation? I understand the brackets go around the 'easy' bit, in order to tell Excel to do that bit first, but if the calculation has more than 2 operators, I don't know where the other sets of brackets go. BODMAS Brackets Of Divide Multiply Add Subtract hello, thank you for your reply. Unfortunately, this doesn't really help me. I am already aware of the actual order, what I am unsure of is where the different sets of brackets go when the calculation contains more than two operators. That depends upon what order you want them to be processed. A basic example........ My calculation is =10+10*2+2*10 My total should therefore be 420. Where do the brackets go, and why, in order to get to the right answer??? It looks as if you want =((10+10)*2+2)*10 It sounds as if, to get what *you* have defined as the right answer, you want each operation in the order in which they are listed, rather than in the order of precedence which Bob gave you. To be on the safe side, you could, if you wish, put brackets round each operation in turn: =(((10+10)*2)+2)*10 .... but you can omit the brackets where the conventional order of precedence doesn't need the brackets (such as where the multiply takes precedence over the subsequent addition). If your calculation is really =10+10*2+2*10 the *right* answer is 50. -- David Biddulph |
#9
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Sorry, I meant Order not Of
-- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Louise" wrote in message ... Does anybody know of a good website which has examples of the way in which Excel performs calculations when there is more than one operator in the calculation? I understand the brackets go around the 'easy' bit, in order to tell Excel to do that bit first, but if the calculation has more than 2 operators, I don't know where the other sets of brackets go. Any help would be appreciated. Thank you. Louise |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I have calculation responses viewed in a Purchase Order? | Excel Worksheet Functions | |||
Order of calculation | Excel Discussion (Misc queries) | |||
Print order of worksheets | Excel Discussion (Misc queries) | |||
How do I set the order of calculation of Data Tables in Excel? | Excel Worksheet Functions | |||
BIMDAS - Order of Calculation | Excel Discussion (Misc queries) |