Results 1 to 6 of 6

Case Statement

Threaded View

  1. #1
    Valued Forum Contributor realniceguy5000's Avatar
    Join Date
    03-20-2008
    Location
    Fl
    MS-Off Ver
    Excel 2003 & 2010
    Posts
    951

    Case Statement

    I made this case statment below to look at a cell in Q and if the cell value is "Large Area" then the cell in P same row should be 1 if the case is Varsity then it would be 2 however I keep getting a Type Mismatch. I tried Picker.Text and Picker.Value as well I didn't get errors but it didn't work either.

    Any Idea's what is wrong?

    Thank You, Mike

    Sub Change_one_two()
        
     Dim Picker As Range, Cell As Object
     Dim irow As Long
     Dim I As String
       
         Application.DisplayAlerts = False
         Application.ScreenUpdating = False
          
        
        Set Picker = Range("Q3", Range("Q65536").End(xlUp))
        
            irow = Picker.Row
                I = irow + 1
        
     
        For Each Cell In Picker
                If IsEmpty(Cell) Then
                    GoTo gonext
                End If
                
            Select Case Picker
                    
            Case "Large Area"
            Range("P" & I).Value = "1"
              
              
            Case Else '"Varsity"
              Range("P" & I).Value = "2"
                 
            End Select
              
    gonext:
            I = I + 1
         Next
    
            
            'Range("P3").Delete Shift:=xlUp
            Stop
                   
             Application.DisplayAlerts = True
             Application.ScreenUpdating = True
           
                 
    End Sub
    Last edited by realniceguy5000; 06-16-2009 at 12:15 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