i am calculating result using formula like below
double FV = 1225;
double VAT = 14.5;
string formula1 = "(FV * VAT)";
if i use this formula1 i want result.
How to do this please help.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
samantaPosted Feb 3, 2015, 11:22 PM
Akhil GargPosted Feb 3, 2015, 11:13 PM
(FV*VAT)ToString();
Else you can write a function which will accept these two value and will return result
samantaPosted Feb 3, 2015, 10:33 AM
ExpressionBuilder?