how to run a macro that alters a record value in a report.
I think this is a pretty straight forward question.
I have a report with a textbox with control source 'FirstName'. and an example macro in a module like this
how do I modify the control source so that it returns test(FirstName) for all values.
thanks
I think this is a pretty straight forward question.
I have a report with a textbox with control source 'FirstName'. and an example macro in a module like this
Code:
Public Function test(v As Variant) As Variant
test = v + "test"
End Function
how do I modify the control source so that it returns test(FirstName) for all values.
thanks
Last edited: