What is the correct syntax for using an SQL statement in the ControlSource property of a report text box?<br><br>I placed the following code in the ControlSource property of a text box located on a report:<br><br>=(SELECT tbl_Letter_Vars. Effective_Date FROM tbl_Letter_Vars)<br>When I run the report, the value is not printing. "#Name?" is displayed in the textbox field.<br><br>I have tried several variations in the syntax such as eliminating the =, using brackets around the table and field names, and including a ; at the end of the statement.<br><br>