Is it possible to write a generic formula to calculate a value that will be used in multiple places in a report where the calculation is based on some input parameter?
Something like a regular VB function where I pass in some input value?
Function MyFunc( MyInput As Double ) As String
MyFunc = Magic( MyInput )
End Function
Thanks very much!
Jim
Something like a regular VB function where I pass in some input value?
Function MyFunc( MyInput As Double ) As String
MyFunc = Magic( MyInput )
End Function
Thanks very much!
Jim