J
JavierDiaz4
Hello there everyone,
I thought this was going to be easy, but it hasnt been. I have an update
query that I didnt want to maintain, so I created a table that looks like the
below
Item / Date / Quantity
008 / 0808 / 3000
008 / 0908 / 50000
008 / 1008 / 6500
Now the update query was suppose to take the quantities you see above and
update them to a flat table that I have by month. Which has the items
already in it but the months are empty, so the update query was going to
place the quantities in it. Like below
Item / Aug / Sept / Oct
008 / 3000 / 50000 / 6500
so my update query was suppose to have a join from the open orders query to
the item table by month and update based on a criteria like the below
Update August if Date=0808 then Quantity
Update Sept if Date = 0908 then Quantity
But the above updateto formula in its correct syntax is causing spotty
updates. Do I have to do an update / criteria for each month in its own
query?
Please help?
I thought this was going to be easy, but it hasnt been. I have an update
query that I didnt want to maintain, so I created a table that looks like the
below
Item / Date / Quantity
008 / 0808 / 3000
008 / 0908 / 50000
008 / 1008 / 6500
Now the update query was suppose to take the quantities you see above and
update them to a flat table that I have by month. Which has the items
already in it but the months are empty, so the update query was going to
place the quantities in it. Like below
Item / Aug / Sept / Oct
008 / 3000 / 50000 / 6500
so my update query was suppose to have a join from the open orders query to
the item table by month and update based on a criteria like the below
Update August if Date=0808 then Quantity
Update Sept if Date = 0908 then Quantity
But the above updateto formula in its correct syntax is causing spotty
updates. Do I have to do an update / criteria for each month in its own
query?
Please help?