Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Again, I have to say thanks in advance!
In this code, which is below: rowFound = Application.Match(valueToFind, wrksB.Columns("A:A"), 0) I get a Type Mismatch error. It worked at one time, then stopped. I am sure it just needs some adjustment to the code, I am a beginner at this. Sub FindPlayUpPlayerReplaceAgeGroup() MsgBox "Change age group on players listed on PlayUpList", vbOKCancel Dim wrksA As Worksheet Dim valueToFind As Range Dim rowNum As Long Dim wrksB As Worksheet Dim rowFound As Integer Dim playUpValue As Range Set wrksA = Worksheets("PlayUpList") Set wrksB = Worksheets("PlDetails") wrksA.Select rowNum = 2 For rowNum = 2 To wrksA.Cells(Rows.Count, "B").End(xlUp).Row If Trim(wrksA.Range("b" & rowNum)) < "" And Trim(wrksA.Range("v" & rowNum)) < "" Then Range("B" & rowNum).Select Set valueToFind = Selection ' MsgBox valueToFind Range("a" & rowNum).Select Set playUpValue = Selection ' MsgBox playUpValue rowFound = Application.Match(valueToFind, wrksB.Columns("A:A"), 0) ' <= displays error ' MsgBox rowFound wrksB.Range("u" & rowFound) = playUpValue ' Range("v" & rowFound) = playUpValue End If Next MsgBox "All players playing up have been modified." End Sub -- JohnM |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Visual Basic Error Run Time Error, Type Mismatch | Excel Discussion (Misc queries) | |||
runtime error 13 - type mismatch error in Excel 97 on Citrix | Excel Programming | |||
Conditional Formatting - Run Time Error '13' Type Mismatch Error | Excel Programming | |||
Help: Compile error: type mismatch: array or user defined type expected | Excel Programming | |||
Befuddled with For Next Loop ------ Run - Time Error '13' Type Mismatch Error | Excel Programming |