I am very new to access, but I do have knowledge of vba. Simply I have been attempting to have a command button on a form that on click will do a count by 1 type function. When clicked basically, it records in textbox and database by ones. I have created the same procedure in normal access database using event procedure:
private sub command_click()
me.field1 = me.field1+1
end sub
this worked great.
However this cant work in web based
I have attempted everything I can think of but have had difficulties with macros, expressions etc.
Any suggestion, even a starting point. Im self taught so learn quickly.