M
Microsoft
I have a list of items that could have a value or might not.
The way I would usually do this is each item has a code and each record
consists of a ProjectNo, a code and a value, thus the table only containing
the items that have values in a vertical.
eg Project1 Code1 £1000
Project1 Code3 £50
etc
PROBLEM
The users want to see the complete list when a new record is opened so I
believe that this would mean that each record will look like:
ProjectNo Code1 Code1Value Code2 Code2Value etc
Which seems to complicate things for querying and reporting.
QUESTION:
What would be the best way to present and code this so that the user gets to
see all the items on the form but the table can be in the structure of
ProjectNo Code Value
xxxx xx 1000
xxxx xxx 50
Thanks
The way I would usually do this is each item has a code and each record
consists of a ProjectNo, a code and a value, thus the table only containing
the items that have values in a vertical.
eg Project1 Code1 £1000
Project1 Code3 £50
etc
PROBLEM
The users want to see the complete list when a new record is opened so I
believe that this would mean that each record will look like:
ProjectNo Code1 Code1Value Code2 Code2Value etc
Which seems to complicate things for querying and reporting.
QUESTION:
What would be the best way to present and code this so that the user gets to
see all the items on the form but the table can be in the structure of
ProjectNo Code Value
xxxx xx 1000
xxxx xxx 50
Thanks