I have used my data to make a graph and a trendline. Excel has given me the equation in this format:
y = 2E-21x6 - 4E-18x5 - 1E-13x4 + 4E-10x3 + 2E-06x2 - 0.0094x + 10.275
I am trying to make this work in VBA format as a calculation where I can input x, and get the value of y. I don't understand how that math works (by the way the last number for each of those is an exponent, for example... 2E-21x^6) because I do not know what the E stands for or the - right in between, I've never seen this before. Can somebody translate this into a format so VBA can use it to calculate? Thank you.
y = 2E-21x6 - 4E-18x5 - 1E-13x4 + 4E-10x3 + 2E-06x2 - 0.0094x + 10.275
I am trying to make this work in VBA format as a calculation where I can input x, and get the value of y. I don't understand how that math works (by the way the last number for each of those is an exponent, for example... 2E-21x^6) because I do not know what the E stands for or the - right in between, I've never seen this before. Can somebody translate this into a format so VBA can use it to calculate? Thank you.