My client's catalog has a structure where each product of the catalog has permutations with pricing.
Here is an example:
Photo A
5x7" = 5.00
8x10" = 7.00
11x7" =10.00
sheet of wallets = 10.00
I've been asked to update all the prices and have done this using an a few update queries in access and it works fine.
The issue I have now is they want to add ANOTHER permutation resulting in:
Photo A
4x6 = 4.00
5x7" = 5.00
8x10" = 7.00
11x7" =10.00
sheet of wallets = 10.00
I was just asked to do this and before I invest time into a solution I wanted to see if people have done this before. It looks like it could get ugly. I could write code using VBA inside ACCESS to loop through the 'ProductProperties' table and use DAO to insert a new record with the appropriate data. But before I go and do this I wanted to check to see if there were any faster solutions.
However this is done, it must be automated. The client has thousands of products.
Also what do people usually charge for updates such as these?
Thanks,
Jason
Here is an example:
Photo A
5x7" = 5.00
8x10" = 7.00
11x7" =10.00
sheet of wallets = 10.00
I've been asked to update all the prices and have done this using an a few update queries in access and it works fine.
The issue I have now is they want to add ANOTHER permutation resulting in:
Photo A
4x6 = 4.00
5x7" = 5.00
8x10" = 7.00
11x7" =10.00
sheet of wallets = 10.00
I was just asked to do this and before I invest time into a solution I wanted to see if people have done this before. It looks like it could get ugly. I could write code using VBA inside ACCESS to loop through the 'ProductProperties' table and use DAO to insert a new record with the appropriate data. But before I go and do this I wanted to check to see if there were any faster solutions.
However this is done, it must be automated. The client has thousands of products.
Also what do people usually charge for updates such as these?
Thanks,
Jason
Comment