A form is the same as a sheet so using form name in the copy will work
with sheets("FormName")
.Range("A1").copy destination:=Sheets("Sheet2").Range(B10")
.Range("A2").copy destination:=Sheets("Sheet2").Range(B11")
.Range("A3").copy destination:=Sheets("Sheet2").Range(B12")
.Range("A4").copy destination:=Sheets("Sheet2").Range(B13")
.Range("A5").copy destination:=Sheets("Sheet2").Range(B14")
.Range("A6").copy destination:=Sheets("Sheet2").Range(B15")
.Range("A7").copy destination:=Sheets("Sheet2").Range(B16")
.Range("A8").copy destination:=Sheets("Sheet2").Range(B17")
end with
> I have created my own custom form that I need placed on sheet2 once the
> submit button (form control) is pressed. There are 8 fields that I need to
> pass. Any ideas? Using Excel 07.
> Thanks
> Nick