Hi Guys
I have been asked to insert new data into a table in a database
The table is calledtblTestSheet This table has three fields in it.
TestSheetID
PartNumberID
ProcessNumber
The ProcessNumber field is a new addition to this table and as such I have been asked to populate the required process number value for each TestSheetID based on PartNumberID
The ProcessNumber increments by 10 for each TestSheetID based on PartNumberID
for example
we have
TestSheetID PartNumberID ProcessNumber 467 127 **10 468 127 **20 469 127 **30 470 127 **40
***are the values that need to be entered*****
The problem I have is that this table contains thousands of entries and to manually enter this data will take ages
is it possible this could be done by an update query?
some PartNumberID only have 1 TestSheetID, other PartNumberID's have many TestSheetID's
in stuck as to how I could do this
any ideas would be fantastic
many thanks
Steve