I know this is a basic question, I have a form where there is just a combobox and a textbox, the user uses the combobox to select the record they want to change and then they enter a value in the textbox which needs to be added to a field in that record.
this is the vba I tried to write with my very limited knowledge:
I get a runtime error "object required" and I have no idea what to do.
The textbox is called DeliveryValue and the record I want to add it to is called StockNumber in a table called Products.
this is the vba I tried to write with my very limited knowledge:
Code:
StockNumber.Value = (StockNumber.Value) + (DeliveryValue.Value)
I get a runtime error "object required" and I have no idea what to do.
The textbox is called DeliveryValue and the record I want to add it to is called StockNumber in a table called Products.