T
TimWillDoIt
I need to assign a formula to a string variable and then use the string
variable in my code as though it were the formula itself.
I've found reference to the .Formula Method for some applications, which
seems to be what i want to do. But this Method doesn't seem to apply in
Access.
A simplified example of what I need to do would be:
Dim strFormula As String
Dim intResult As Integer
strFormula = "5 * 5"
intResults = <some function>(strFormula)
MsgBox intResults
....and the Message Box would display 25.
Can this be accomplished?
variable in my code as though it were the formula itself.
I've found reference to the .Formula Method for some applications, which
seems to be what i want to do. But this Method doesn't seem to apply in
Access.
A simplified example of what I need to do would be:
Dim strFormula As String
Dim intResult As Integer
strFormula = "5 * 5"
intResults = <some function>(strFormula)
MsgBox intResults
....and the Message Box would display 25.
Can this be accomplished?