Ive created a userform that I want to have input data into specific cells in my worksheet. I have the userform created, and some of the other VB stuff written, but it is far from being functional. I have come across the first of what to is to be many problems (Im pretty rusty at VB).

I have a button on my spreadsheet that is supposed to show the userform using this macro

Private Sub Buttonstart_Click()
 
'Show user form
Form1.Show

End Sub
When I click the button, it breaks at "Form1.Show" giving me "Run-time error 424 : Object Required"

Ive been searching and reading reference material/tutorials on userforms but I cant find anything that helps.

Input is appreciated.