Is it possible without using a subform to refer to the expression builder / table for a control source?
When I try writing an expression "=
![variable]" as a control source, it asks for a parameter value and displays an #error?
Basically I need to refer to many tables in one report. I cannot use a subreport because I am writing a narrative that textualizes my data but the data items come from different tables in a non sequential fashion. I'm basically writing a paragraph that concatenates strings and variable values.
They are many to many tables that I've tried creating a query for but it doesn't work. Ie: the value for one variable in table 1 is repeated a number of times if there are more rows in table 2.
Ultimately, I'd like to write a narrative as follows in a report
"Hi my name is " & [Nametable]![name] & "I am " & [agetable]![age] & "years old" etc. etc.
When I try writing an expression "=
Basically I need to refer to many tables in one report. I cannot use a subreport because I am writing a narrative that textualizes my data but the data items come from different tables in a non sequential fashion. I'm basically writing a paragraph that concatenates strings and variable values.
They are many to many tables that I've tried creating a query for but it doesn't work. Ie: the value for one variable in table 1 is repeated a number of times if there are more rows in table 2.
Ultimately, I'd like to write a narrative as follows in a report
"Hi my name is " & [Nametable]![name] & "I am " & [agetable]![age] & "years old" etc. etc.