+ Reply to Thread
Results 1 to 2 of 2

data from userform to a cell on an execel sheet

  1. #1
    David Marshall
    Guest

    data from userform to a cell on an execel sheet

    I'm looking to enter data from a userform to a specific cell on an Excel
    spreadsheet, then print a form from this data.

  2. #2
    Tom Ogilvy
    Guest

    Re: data from userform to a cell on an execel sheet

    Private Sub CommandButton1_Click()
    With Worksheets("Sheet1")
    .Range("A1").Value = Userform1.TextBox1.Text
    .Printout
    End With
    UnLoad Userform1
    End Sub


    --
    Regards,
    Tom Ogilvy

    "David Marshall" <David [email protected]> wrote in message
    news:[email protected]...
    > I'm looking to enter data from a userform to a specific cell on an Excel
    > spreadsheet, then print a form from this data.




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1