Hi,
In one of my tables I have a string field to record a calculation formula. For example "([Cost]+[Markup])*(1+[Tax])+10".
I need to get the value for this formula.
For example, when I have Cost=10 and Markup=5 and Tax=0.1 I need it to calculate somehow to whatever it is (I think it's 26.5).
In Access I replace in the string each field with its value, I get the string "(10+5)*(1+0.1)+10" and I use Eval() to get the value of this calculation. How can I do this in SQL Server?
Thanks a lot!
In one of my tables I have a string field to record a calculation formula. For example "([Cost]+[Markup])*(1+[Tax])+10".
I need to get the value for this formula.
For example, when I have Cost=10 and Markup=5 and Tax=0.1 I need it to calculate somehow to whatever it is (I think it's 26.5).
In Access I replace in the string each field with its value, I get the string "(10+5)*(1+0.1)+10" and I use Eval() to get the value of this calculation. How can I do this in SQL Server?
Thanks a lot!