andrewhoddie
Board Regular
- Joined
- Dec 21, 2008
- Messages
- 114
Hi all
Hopefully someone will be able to point me in the right direction with a problem I am having.
I have two tables, one called Questions, this has a list of 100 questions that I need to ask each quarter. The fields are
ID (Autonumber), KPIID, KPIDesc, KPITarget, KPIOwner
Example data
ID KPIID KPIDesc KPITarget KPIOwner
1 1 Type A Sales 100 Ben
2 4 Type B Sales 50 Chris
3 5 Type C Sales 60 Nick
4 6 Type E Sales 40 Ben
The second table is where I would like to store the results and is called KPIResults. The fields in this are
ID (autonumber), KPIID, KPIYear, KPIMonth, KPIResult, KPIAgreedDate
Example of how I would like the data to look once completed
ID KPIID KPIYear KPIMonth KPIResult KPIAgreedDate
1 1 2017 Jan-Mar 95 01/04/2017
2 4 2017 Jan-Mar 55 01/04/2017
3 5 2017 Jan-Mar 61 03/04/2017
4 1 2017 Apr-Jun 102 02/07/2017
5 4 2017 Apr-Jun 59 03/07/2017
6 5 2017 Apr-Jun 58 03/07/2017
The KPIID will link the two tables.
For the user to enter the data I have created a form called KPIEntry with tabs to breakdown the questions onto separate tabs. The format that I want is:
On the page to have the KPIYear and KPIMonth fields, then on each tab (one tab per owner) to have the KPIID, KPIDesc, KPIResult and KPIAgreedDate for each question they need to provide data for.
The problem I am having is getting the list of questions on the same tab per user.
For example what I would like for Ben is (Does not need to be a table format just easier to keep it clean for the example)
KPIID KPIDes KPIResult KPIAgreed
1 Type A Sales
4 Type E Sales
which would be completed and then saved back into table KPIResults. I can only get one question per page. When I try to change the sheet type to continuous it shows all questions and if I try to add duplicate fields it just shows the same value. I am trying to avoid having to create a large table with one row per year and month combination and over 100 columns for the questions. Can anyone help on this?
Hopefully I have been clear in what I am trying to achieve.
Thanks in advance
Andrew
Hopefully someone will be able to point me in the right direction with a problem I am having.
I have two tables, one called Questions, this has a list of 100 questions that I need to ask each quarter. The fields are
ID (Autonumber), KPIID, KPIDesc, KPITarget, KPIOwner
Example data
ID KPIID KPIDesc KPITarget KPIOwner
1 1 Type A Sales 100 Ben
2 4 Type B Sales 50 Chris
3 5 Type C Sales 60 Nick
4 6 Type E Sales 40 Ben
The second table is where I would like to store the results and is called KPIResults. The fields in this are
ID (autonumber), KPIID, KPIYear, KPIMonth, KPIResult, KPIAgreedDate
Example of how I would like the data to look once completed
ID KPIID KPIYear KPIMonth KPIResult KPIAgreedDate
1 1 2017 Jan-Mar 95 01/04/2017
2 4 2017 Jan-Mar 55 01/04/2017
3 5 2017 Jan-Mar 61 03/04/2017
4 1 2017 Apr-Jun 102 02/07/2017
5 4 2017 Apr-Jun 59 03/07/2017
6 5 2017 Apr-Jun 58 03/07/2017
The KPIID will link the two tables.
For the user to enter the data I have created a form called KPIEntry with tabs to breakdown the questions onto separate tabs. The format that I want is:
On the page to have the KPIYear and KPIMonth fields, then on each tab (one tab per owner) to have the KPIID, KPIDesc, KPIResult and KPIAgreedDate for each question they need to provide data for.
The problem I am having is getting the list of questions on the same tab per user.
For example what I would like for Ben is (Does not need to be a table format just easier to keep it clean for the example)
KPIID KPIDes KPIResult KPIAgreed
1 Type A Sales
4 Type E Sales
which would be completed and then saved back into table KPIResults. I can only get one question per page. When I try to change the sheet type to continuous it shows all questions and if I try to add duplicate fields it just shows the same value. I am trying to avoid having to create a large table with one row per year and month combination and over 100 columns for the questions. Can anyone help on this?
Hopefully I have been clear in what I am trying to achieve.
Thanks in advance
Andrew