littleclayjar
Technical User
I have an Access table structured in the following way:
SupplierID Packaging1 Packaging2
1 YES YES
2 YES NO
3 NO YES
I need to restructure it so it looks like this:
SupplierID PackagingType Value
1 Packaging1 YES
1 Packaging2 YES
2 Packaging1 YES
2 Packaging2 NO
3 Packaging1 NO
3 Packaging2 YES
Is there a name for this process and how would i go about writing VBA code to restructure it?
Thanks for the help!
SupplierID Packaging1 Packaging2
1 YES YES
2 YES NO
3 NO YES
I need to restructure it so it looks like this:
SupplierID PackagingType Value
1 Packaging1 YES
1 Packaging2 YES
2 Packaging1 YES
2 Packaging2 NO
3 Packaging1 NO
3 Packaging2 YES
Is there a name for this process and how would i go about writing VBA code to restructure it?
Thanks for the help!