I created this pretty neat form that does some calculations....
I also created a very simple append query for it, but I have no idea on how to creat a button on the form to run the append query.
Put this code behind the OnClick event of your command button; If you want to see the warnings (for a test run) put ' in front of the 2 lines that relate to SetWarnings.
Code:
DoCmd.SetWarnings False ' This will turn off Access warnings
DoCmd.OpenQuery "QueryName"
DoCmd.SetWarnings True ' This will turn them back on.
P.S. Just a question, Are you storing the result of your calculations in a table?