G
GL
I have created an inventory database. I have a current inventory table with
a field called Transfer (Long Integer) used for both transfer in and transfer
out. I have another table called tblTransfer, where the user selects what
location he wants to transfer inventory out of and where to transfer into.
I am linking the two tables and using an update query to update the transfer
amount - it works fine if the transfer amount in my current inventory table
is zero. I use an append query to add the transfer out location and that is
fine. For the update query, if the transfer amount already holds a number (at
first I just thought a negative number, but I believe regardless), it will
say zero records updated. I'd rather not use code to get around this as I'm
not that savy with it - can anyone think of what the problem might be. One
other fly in the ointment - I can transfer out of the same location into
different locations, so in affect its hitting the same record twice.
Interestingly enough the first time through it works for both records, but
then when I try to do another transfer on that same location it doesn't work.
Any help/suggestions would sure be appreciated!! Thanks!!!
a field called Transfer (Long Integer) used for both transfer in and transfer
out. I have another table called tblTransfer, where the user selects what
location he wants to transfer inventory out of and where to transfer into.
I am linking the two tables and using an update query to update the transfer
amount - it works fine if the transfer amount in my current inventory table
is zero. I use an append query to add the transfer out location and that is
fine. For the update query, if the transfer amount already holds a number (at
first I just thought a negative number, but I believe regardless), it will
say zero records updated. I'd rather not use code to get around this as I'm
not that savy with it - can anyone think of what the problem might be. One
other fly in the ointment - I can transfer out of the same location into
different locations, so in affect its hitting the same record twice.
Interestingly enough the first time through it works for both records, but
then when I try to do another transfer on that same location it doesn't work.
Any help/suggestions would sure be appreciated!! Thanks!!!