How does one store mathematical expressions in a database and print them in a report?
razausman asked:
I would like to store and expression like y=2x^2+6 and be able to render the expression in a report
thanks
I would like to store and expression like y=2x^2+6 and be able to render the expression in a report
thanks


just make a database with a collom for the forula and then make a report based on that
Your best bet is to make this a function
Public Function Y(X As Long) As Long
Y = ((2 * X) ^ 2) + 6
End Function
You can use the Tools>Analyze>Documenter to print it.