Concepts01
Programmer
Hi,
I must extract data from a table consisting of (let's pretend)3 fields. The field names are IDNumber, Entity, and Data. There is no key field. The problem is, the Entity field contains data like FName, LName, Address, Phone, etc. The Data field would correspond with Jim, Smith, 222 Main, 222-2222, etc. The IDNumber would be the same for all 4 records. I need to transpose the Entity field data, to Field Names in a new table so I can have 1 record for Jim Smith. (example field names: FName, LName. . you get the picture). I am currently doing this by creating multiple queries, pulling the desired records from the Entity field of each query, then running a make table query from the previously made queries. The problem is, the database is over a million records (not an Access database) and growing by thousands every month. And I have 117 data fields that I need to pull. I though if I could do this in code, it would run faster and be more efficient. Can anyone help get me started? Thank you
I must extract data from a table consisting of (let's pretend)3 fields. The field names are IDNumber, Entity, and Data. There is no key field. The problem is, the Entity field contains data like FName, LName, Address, Phone, etc. The Data field would correspond with Jim, Smith, 222 Main, 222-2222, etc. The IDNumber would be the same for all 4 records. I need to transpose the Entity field data, to Field Names in a new table so I can have 1 record for Jim Smith. (example field names: FName, LName. . you get the picture). I am currently doing this by creating multiple queries, pulling the desired records from the Entity field of each query, then running a make table query from the previously made queries. The problem is, the database is over a million records (not an Access database) and growing by thousands every month. And I have 117 data fields that I need to pull. I though if I could do this in code, it would run faster and be more efficient. Can anyone help get me started? Thank you