Les,
Sending the data to Access is a bit more complicated, more for the fact that
usually the data transfer is the other directions (at least in my
experience). Let me think about the easiest method to send you an example
that you can apply with little complication. I will try to get back to you
by Tuesday if possible....Monday's are horrible for me.
Re: the issue of clearing the cells....thats very simple. Create your macro
( or hidden command that you reference through code or button (which we we
chat about next week) using the code below:
Private Sub CommandButton1_Click()
ActiveSheet.Unprotect
Range("B4").ClearContents
Range("B6").ClearContents
Range("C4").ClearContents
Range("C6").ClearContents
Range("D4").ClearContents
Range("D6").ClearContents
ActiveSheet.Protect
End Sub
I did this the easiest method possible for you to see how its done
basically.
Go to Tools, Macros, Visual Basic Editor and double-click on the sheet name
containing the cells. Paste the above code in the sheet. Change the cells
to reference your specifc cells, then save the sheet. Close it and go back
to your form(worksheet).
Now, create the command button and link the code you pasted to its name.
When you save and go back to your sheet it will clear the cells upon
clicking it.
Hope this helps and I will try to get back with you when possible. And, if
I can come up with an easy way to send an example.
Maybe someone else has a good clear example already?
Best of luck....
Later,
RS