Results 1 to 12 of 12

Runtime error 13 Type mismatch

Threaded View

  1. #1
    Registered User
    Join Date
    12-22-2014
    Location
    Australia
    MS-Off Ver
    2016
    Posts
    89

    Runtime error 13 Type mismatch

    Hi All,

    I was using the below code to extract data and pasting it in another sheet called Result

    Now today I added 2 extra rows and I am getting the Type mismatch error at line "Set frng = Sheets("result").Range("A:A").Find(CDate(fdate))"

    I have tried amending the i = 1137 because from thats where the 2 rows are being added and hence amended the Irow Step 14
    But it still gives the same error

    Can anybody please help to troubleshoot

    Sub TrfrData()
    Dim cell As Range, frng As Range
    Dim i As Integer, lrow As Integer, nrow As Integer, x As Integer
    Dim fdate As String
    lrow = Sheets("2017 SOH").Range("B" & Sheets("2017 SOH").Rows.Count).End(xlUp).Row
    For i = 22 To lrow Step 12
    fdate = Format(Sheets("2017 SOH").Range("B" & i).Value, "dd-mm-yy")
    Set frng = Sheets("result").Range("A:A").Find(CDate(fdate))
    If frng Is Nothing Then
    With Sheets("result")
    nrow = .Range("A" & .Rows.Count).End(xlUp).Offset(1, 0).Row
    .Range("A" & nrow).Value = Sheets("2017 SOH").Range("B" & i).Value
    For x = 5 To 13
    .Cells(nrow, x - 3).Value = Sheets("2017 SOH").Cells(i - 1, x).Value
    Next x
    For x = 16 To 18
    .Cells(nrow, x - 5).Value = Sheets("2017 SOH").Cells(i - 1, x).Value
    Next x
    End With
    End If
    Next i
    End Sub
    Attached Files Attached Files
    Last edited by logisticsexcel; 05-29-2017 at 07:55 AM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Runtime Error 13 .... Type Mismatch
    By mawnek in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 11-03-2016, 02:03 PM
  2. Type mismatch runtime error 13
    By kalyanr12 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 07-08-2014, 04:09 PM
  3. Type Mismatch Runtime Error
    By Jaeger in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 02-21-2014, 10:49 AM
  4. [SOLVED] runtime error 13 type mismatch
    By Justair07 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 06-28-2013, 02:46 PM
  5. [SOLVED] runtime error 13 type mismatch
    By chappie in forum Excel Programming / VBA / Macros
    Replies: 11
    Last Post: 08-30-2012, 10:12 PM
  6. [SOLVED] Runtime Error Type 13 Mismatch
    By Linking to specific cells in pivot table in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 05-31-2006, 12:35 PM
  7. [SOLVED] Runtime Error '13': Type mismatch
    By Linking to specific cells in pivot table in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-18-2005, 03:06 PM

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