So, Here's the situation.
I need to create a report for a particular name between the given dates.
The table consists of fields like survey name, date, name1, name2....name5 (name1-5 are boolean fields, which basically tell if that user has taken the survey)
So, I create a form and take inputs for begin date, end date and name. I generate a macro which goes like
.
Now suppose the user gives name1 as the input, how do I get it as an expression?
I need to create a report for a particular name between the given dates.
The table consists of fields like survey name, date, name1, name2....name5 (name1-5 are boolean fields, which basically tell if that user has taken the survey)
So, I create a form and take inputs for begin date, end date and name. I generate a macro which goes like
Code:
[table].[date]>=[form].[begindate] And [table].[date]<=[form].[enddate]
Now suppose the user gives name1 as the input, how do I get it as an expression?
Comment