I have an Access 2007 form CLUB INFO which uses a query function to populate fields using data from a table called [mbrlist] with the count of members who have spent less than $400.
The query function I use to populate the CLUBINFO field clubinfo.[CasualPatron] looks like: =GetQueryValue("SELECT count(*) from [mmbrlst] where [FBSpnd]<400")
I would like to be able to substitute ”<400” with “<[lowspend]” and be able to enter a value into clubinfo.[lowspend] so that the criteria for the query could be based on this value.
However, [Mmblist] and the control source table for the CLUB INFO form [clubinfo] do not share any common fields so I have nothing with which to join the two tables.
I want to enter the amount into ClubInfo.[lowspend] once and change this value from time to time.
I do not want to use a parameter query which would call for input each time ClubInfo opened.
Thanks