I am trying to evaluate a formula from a string (Excel). The string is been take it via VLOOKUP() function.
I have an table with formulas "Formulas". Via an drop down cell I like to select what Formula I like to apply.
This is one of the strings: "pi()*(B5+2*C5/1000)"
I have trying the following extra function to complete this task without success:
=INDIRECT(VLOOKUP(A38;formulas;2;))
=INDIRECT("="&"pi()*(B5+2*C5/1000)")
=TEXT(INDIRECT("="&"pi()*(B5+2*C5/1000)");)
=INDIRECT(TEXT(INDIRECT("="&"pi()*(B5+2*C5/1000)");))
So in cell A38 I have an drop down menu: -Function1, Functin2, Function3 etc....
I am not interested in an VBA solution. Maybe exist something without VBA.
Thank you!