+ Reply to Thread
Results 1 to 6 of 6

Compile Error

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    09-26-2010
    Location
    Australia
    MS-Off Ver
    Excel 2003
    Posts
    182

    Question Compile Error

    I have a Compile error:
    Invalid or unqualified reference

    and can't find the problem


    Private Sub cmdAdd_Click()
    Dim iRow As Long
    Dim ws As Worksheet
    Set ws = Worksheets(",")
    
    'find first empty row in database
    iRow = ws.Cells(Rows.Count, 1)
      .End(xlUp).Offset(1, 0).Row _
      
    'check for a Category
    If Trim(Me.cboCategory.Value) = "" Then
      Me.cboCategory.SetFocus
      MsgBox "Please Select a Category"
      Exit Sub
    End If
    
    'check for a Product
    If Trim(Me.txtProduct.Value) = "" Then
      Me.cboCategory.SetFocus
      MsgBox "Please Enter a Product Description"
      Exit Sub
    End If
    
    'copy the data to the database
    ws.Cells(iRow, 1).Value = Me.txtProduct.Value
    ws.Cells(iRow, 2).Value = Me.cboUnit.Value
    ws.Cells(iRow, 3).Value = Me.txtPrice.Value
    ws.Cells(iRow, 4).Value = Me.txtLabour.Value
    
    
    
    'clear the data
    Me.cboCategory.Value = ""
    Me.txtProduct.Value = ""
    Me.cboUnit.Value = ""
    Me.txtPrice.Value = ""
    Me.txtLabour.Value = ""
    
    Me.cboCategory.SetFocus
    
    End Sub

  2. #2
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,243

    Re: Compile Error

    The problem is:

    iRow = ws.Cells(Rows.Count, 1)
    .End(xlUp).Offset(1, 0).Row _

    Should be:

    iRow = ws.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row

    Or

    iRow = ws.Cells(Rows.Count, 1) _
        .End(xlUp).Offset(1, 0).Row


    Regards
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


  3. #3
    Forum Expert snb's Avatar
    Join Date
    05-09-2010
    Location
    VBA
    MS-Off Ver
    Redhat
    Posts
    5,649

    Re: Compile Error

    You'd better not show this commanbutton, unless all compulsory data have been entered.

    Private Sub cmdAdd_Click()
      sheets(1).Cells(Rows.Count, 1).End(xlUp).Offset(1).Resize=Array(txtProduct.Txt,cboUnit.Value,txtPrice.Txt,txtLabour.Value)
      for j=1 to 4
        controls(choose(j,"cboCategory","txtProduct","cboUnit","txtPrice","txtLabour").Value = ""
      next
    End Sub
    
    Private Sub A_check()
      cmdAdd.visible=cboCategory.value<>"" and txtProduct.Text<>"" and cboCategory.value<>""
    End Sub
    
    Private Sub txtProduct_Change()
      A_check
    End Sub
    
    Private Sub cboCategory_Change()
      A_check
    End Sub



  4. #4
    Forum Contributor
    Join Date
    09-26-2010
    Location
    Australia
    MS-Off Ver
    Excel 2003
    Posts
    182

    Question Re: Compile Error

    I entered your code but got a syntax error on this line of code

    controls(choose(j,"cboCategory","txtProduct","cboUnit","txtPrice","txtLabour").Value = ""


    Private Sub cmdAdd_Click()
      Sheets(1).Cells(Rows.Count, 1).End(xlUp).Offset(1).Resize = Array(txtProduct.Value, cboUnit.Value, txtPrice.Value, txtLabour.Value)
      For j = 1 To 4
        controls(choose(j,"cboCategory","txtProduct","cboUnit","txtPrice","txtLabour").Value = ""
      Next
    End Sub
    Private Sub A_check()
      cmdAdd.Visible = cboCategory.Value <> "" And txtProduct.Text <> "" And cboCategory.Value <> ""
    End Sub
    Private Sub txtProduct_Change()
      A_check
    End Sub
    Private Sub cboCategory_Change()
      A_check
    End Sub

  5. #5
    Forum Expert snb's Avatar
    Join Date
    05-09-2010
    Location
    VBA
    MS-Off Ver
    Redhat
    Posts
    5,649

    Re: Compile Error

    Then you'll have to debug it (Lesson 1 of programming).
    Clue: the number of ( should equal the number of ).

  6. #6
    Forum Contributor
    Join Date
    09-26-2010
    Location
    Australia
    MS-Off Ver
    Excel 2003
    Posts
    182

    Re: Compile Error

    I now have an error on this line of code

    Set ws = Worksheets(",")


    Private Sub cmdAdd_Click()
    Dim iRow As Long
    Dim ws As Worksheet
    Set ws = Worksheets(",")
    
    'find first empty row in database
    iRow = ws.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row
      
    'check for a Category
    If Trim(Me.cboCategory.Value) = "" Then
      Me.cboCategory.SetFocus
      MsgBox "Please Select a Category"
      Exit Sub
    End If
    
    'check for a Product
    If Trim(Me.txtProduct.Value) = "" Then
      Me.cboCategory.SetFocus
      MsgBox "Please Enter a Product Description"
      Exit Sub
    End If
    
    'copy the data to the database
    ws.Cells(iRow, 1).Value = Me.txtProduct.Value
    ws.Cells(iRow, 2).Value = Me.cboUnit.Value
    ws.Cells(iRow, 3).Value = Me.txtPrice.Value
    ws.Cells(iRow, 4).Value = Me.txtLabour.Value
    
    
    
    'clear the data
    Me.cboCategory.Value = ""
    Me.txtProduct.Value = ""
    Me.cboUnit.Value = ""
    Me.txtPrice.Value = ""
    Me.txtLabour.Value = ""
    
    Me.cboCategory.SetFocus
    
    End Sub

+ 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