Results 1 to 21 of 21

Trouble shooting a user form code

Threaded View

  1. #1
    Forum Contributor
    Join Date
    05-10-2011
    Location
    Central Ohio
    MS-Off Ver
    Excel 2000, and 2010
    Posts
    654

    Trouble shooting a user form code

    I have tried to create a user form by adapting a U Tube lesson on user forms. So far the attached is what I have come up with but I cant get it to work. I think most of it is straight forward with some exceptions. I should also note that when it comes to VBA I know very little, just enough to get into trouble.

    The data should paste to the log "Job" . Column "A" is blank, column "B" contains a ormula copied from the cell above the current entry, columns "C " thru "G" are populated from the form. Their are then a range of formulas that will be copied from the previous row, I just need to know how to code them. Can I just have a line of code that will enter the formulas as a range or will I need to write a line of code for each column?

    Private Sub CommandButton1_Click()
    
    eRow = Job.Cells(Row.Count, 1).End(x1Up).Offset(1.0)Row
    
        'Range("C2").Value = txtDate
        'Range("D2").Value = txtCustomer
        'Range("E2").Value = cmbJob
        'Range("F2").Value = txtNotes
        'Ramge("G2").Value = cmbPrice
        
        Cells(eRow, 2).Value = eRow - 1
        Cells(eRow, 3).Value = txtDate.Text
        Cells(eRow, 4).Value = txtCustomer.Text
        Cells(eRow, 5).Value = cmbJob.Text
        Cells(eRow, 6).Value = txtNotes.Text
        Cells(eRow, 7).Value = cmbPrice.Value
        
        
    
    End Sub
    Jim O
    Last edited by JO505; 03-08-2013 at 12:36 PM.

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