D
Dave
In the control source of a textbox on a report, the following works fine:
="Investment: " & [Investment]
[Investment] field is of string data type.
However, when I try the same syntax with an integer data type, I get
"Error" displayed in the report's control.
Even if I try to convert to a string, like below, it still displays "error."
="Check No: " & str([CheckNo])
What am I doing wrong?
="Investment: " & [Investment]
[Investment] field is of string data type.
However, when I try the same syntax with an integer data type, I get
"Error" displayed in the report's control.
Even if I try to convert to a string, like below, it still displays "error."
="Check No: " & str([CheckNo])
What am I doing wrong?