+ Reply to Thread
Results 1 to 4 of 4

Help with debugging a VBA code

Hybrid View

  1. #1
    Registered User
    Join Date
    01-17-2011
    Location
    India
    MS-Off Ver
    Excel 2007
    Posts
    4

    Help with debugging a VBA code

    Hello, I am new to VBA programming in excel. Can you'll help me with debugging the following code, i get an error '13' while executing.

    Private Sub CheckBox1_Click()
    If CheckBox1.Value = True Then Range("K5").Value = "We are good"
    If CheckBox1.Value = False Then Range("K5").Value = "Follow up"
    End Sub
    
    Private Sub CommandButton1_Click()
    Dim fdate As Date
    Dim sdate As Date
    Dim n As Integer
    fdate = DateValue(startDate)
    sdate = DateValue(sendDate)
    n = DateDiff("d", fdate, sdate)
    MsgBox n
    End Sub
    
    
    Private Sub TextBox1_Change()
    Dim startDate As String
    startDate = Worksheets("Sheet1").TextBox1.Value
    
    
    End Sub
    
    Private Sub TextBox2_Change()
    Dim endDate As String
    endDate = Worksheets("Sheet1").TextBox2.Value
    End Sub

  2. #2
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,524

    Re: Help with debugging a VBA code

    Maybe you should explain which code gives you the error.....
    Private Sub CommandButton1_Click()
    
        Dim n, a As Date, b As Date
    
        a = Range("StartDate")
        b = Range("sendDate")
    
        n = DateDiff("d", a, b)
    
        MsgBox n
    
    End Sub

  3. #3
    Registered User
    Join Date
    01-17-2011
    Location
    India
    MS-Off Ver
    Excel 2007
    Posts
    4

    Re: Help with debugging a VBA code

    [


    This is where i get an error:

    Private Sub CommandButton1_Click()
    Dim fdate As Date
    Dim sdate As Date
    Dim n As Integer
    fdate = DateValue(startDate)
    sdate = DateValue(sendDate)
    n = DateDiff("d", fdate, sdate)
    MsgBox n
    End Sub
    Last edited by davesexcel; 01-21-2011 at 09:27 AM.

  4. #4
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,524

    Re: Help with debugging a VBA code

    Check the solution in the previous post

+ 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