Results 1 to 6 of 6

Run TIme error 91 Object variable or with block variable not set

Threaded View

flex30 Run TIme error 91 Object... 04-18-2013, 02:50 PM
protonLeah Re: Run TIme error 91 Object... 04-18-2013, 06:29 PM
flex30 Re: Run TIme error 91 Object... 04-18-2013, 06:53 PM
Norie Re: Run TIme error 91 Object... 04-18-2013, 07:02 PM
flex30 Re: Run TIme error 91 Object... 04-23-2013, 11:23 AM
Norie Re: Run TIme error 91 Object... 04-23-2013, 11:34 AM
  1. #1
    Registered User
    Join Date
    04-18-2013
    Location
    Manila
    MS-Off Ver
    Excel 2007
    Posts
    3

    Run TIme error 91 Object variable or with block variable not set

    Hi,

    Im kinda new with excel and i need help with the error im encountering. I intend to use the code as a counter with 2 conditions one for the date and the second for the case indicated. Im getting the run time error 91 object variable or with block variable not set
    Private Sub GetData_Click()
    Dim i As Integer
    i = 6
    Range("C6:C11") = 0
    
        Do While Range("D" & i) <> ""
            j = 8
            DataFound = False
            EfficiencyFraud = 0
            AccountSpecificViolation = 0
            PrivacyPolicyViolation = 0
            FinancialFraud = 0
            OtherCompanyViolation = 0
            CSATFraud = 0
    
    
            Do While Worksheets("Tracker").Range("A" & j) <> ""
                If Worksheets("Tracker").Range("G" & j) = Program And Worksheets("Tracker").Range("B" & j) >= DateStart And Worksheets("Tracker").Range("B" & j) <= DateEnd Then
                    DataFound = True
                    Select Case Worksheets("Tracker").Range("P" & j).Value
                        Case "Efficiency Fraud"
                            EfficiencyFraud = EfficiencyFraud + 1
                        Case "Account Specific Violation"
                            AccountSpecificViolation = AccountSpecificViolation + 1
                        Case "Privacy Policy Violation"
                            PrivacyPolicyViolation = PrivacyPolicyViolation + 1
                        Case "Financial Fraud"
                            FinancialFraud = FinancialFraud + 1
                        Case "Other Company Violation"
                            OtherCompanyViolation = OtherCompanyViolation + 1
                        Case "CSAT Fraud"
                            CSATFraud = CSATFraud + 1
                            
                    End Select
                End If
                j = j + 1
            Loop
            If DataFound = True Then
                Range("C6") = EfficiencyFraud
                Range("C7") = AccountSpecificViolation
                Range("C8") = PrivacyPolicyViolation
                Range("C9") = FinancialFraud
                Range("C10") = OtherCompanyViolation
                Range("C11") = CSATFraud
                
                
                
            Else
                Range("C6") = "N/A"
                Range("C7") = "N/A"
                Range("C8") = "N/A"
                Range("C9") = "N/A"
                Range("C10") = "N/A"
                Range("C11") = "N/A"
            End If
            i = i + 1
        Loop
        
    End Sub
    Last edited by Leith Ross; 04-18-2013 at 02:53 PM. Reason: Added Code Tags

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