Ouranos:
gregmcc: 1st Variable number 84 2nd Variable number 75 Answer
1399.345
=SUM(66.47+(13.75*A2)+(5*175)-(6.76*A4)*1.375)
This is the formula that goes in the box below "Answer"
That spreadsheet formula has two, or possibly three, errors:
1. The SUM function is unnecessary. Effectively it says =SUM(x) which is just x. I see many people do this and I don't understood why.
has no effect on the outcome so it's not an error
2. A formula should never contain hard-coded "magic numbers". For example, what does 66.47 mean? Put each of the numbers in a cell and refer to them. Then document what each of the numbers means, where it comes from, etc.
again it makes no difference what these "magic" numbers are, they are fixed constants, it's only the 84 and 75 that change, so not an error either
3. The OP stated the equation as "[66.47 + (13.75 x 84) + (5 x 175 ) - (6.76 x 75] x 1.375" which has mismatched parentheses. Looking at the square brackets, I assume it is intended that the whole thing is multiplied by 1.375. If so, then =SUM(66.47+(13.75*A2)+(5*175)-(6.76*A4)*1.375) is wrong (as is the PowerShell script posted earlier). That is, does the original equation equal 2185.52125 or 1399.345?
maybe an error, but we will never know as the OP has given the equation without any explanation as to what it is calculating, what the fixed values are and what the variable value are.
Maybe the OP could enlighten us with more details and we can then determine where the brackets belong