I have 2 tables: "Jobs" table contains all the job numbers. "Options" table contains all possible options that are available with various jobs.
I need to do two things.
1. Match up every option with every job. I had luck with this step by creating a select Query with GroupBy totals on both the JobNumber and OptionDesc. This matched up every job with every option. But I had nowhere to set the value to yes or no (see next step).
2. Set a yes or no value for each option-jobnumber matchup. The crosstab query looks like exactly what I want, but where do I store the yes/no value? I don't really have a field for it in any table, because pairing of the two fields from the different tables is something that is done automatically.
I hope this makes sense. Any help would be greatly appreciated.
Darleen
I need to do two things.
1. Match up every option with every job. I had luck with this step by creating a select Query with GroupBy totals on both the JobNumber and OptionDesc. This matched up every job with every option. But I had nowhere to set the value to yes or no (see next step).
2. Set a yes or no value for each option-jobnumber matchup. The crosstab query looks like exactly what I want, but where do I store the yes/no value? I don't really have a field for it in any table, because pairing of the two fields from the different tables is something that is done automatically.
I hope this makes sense. Any help would be greatly appreciated.
Darleen