How do I put spaces in the text in my Parameter box?
At the moment I have 'spaced' out the words "Enter your Group name" with Underscores. It looks terrible
but it works.
If I put hard spaces, I get a syntax error.
Code:
stSQL = stSQL & " WHERE (((Year([ImplementationDate]))= " & Year(txtSelectDate) & ") AND ((Month([ImplementationDate]))= " & Month(txtSelectDate) & ")) And (tblChanges.Group) = " & CStr("Enter_your_group_name") & ""
At the moment I have 'spaced' out the words "Enter your Group name" with Underscores. It looks terrible

If I put hard spaces, I get a syntax error.
Code:
stSQL = stSQL & " WHERE (((Year([ImplementationDate]))= " & Year(txtSelectDate) & ") AND ((Month([ImplementationDate]))= " & Month(txtSelectDate) & ")) And (tblChanges.Group) = " & CStr("Enter_your_group_name") & ""