+ Reply to Thread
Results 1 to 3 of 3

Error 13 type mismatch

Hybrid View

Jiptastic Error 13 type mismatch 01-03-2013, 04:40 PM
Andrew-R Re: Error 13 type mismatch 01-03-2013, 04:48 PM
jindon Re: Error 13 type mismatch 01-03-2013, 05:14 PM
  1. #1
    Forum Contributor
    Join Date
    09-25-2012
    Location
    Ventura, united States
    MS-Off Ver
    Excel 2010
    Posts
    346

    Error 13 type mismatch

    Any ideas why this line is bringing up the Type 13 Error?

    Do While ActiveCell.Value = Empty
    I've tried it like this as well:

    Do While ActiveCell = Empty

  2. #2
    Forum Expert
    Join Date
    07-16-2010
    Location
    Northumberland, UK
    MS-Off Ver
    Excel 2007 (home), Excel 2010 (work)
    Posts
    3,054

    Re: Error 13 type mismatch

    Because that it's how you use the Empty function, what you're looking for is:

    Do While IsEmpty(ActiveCell.Value)

  3. #3
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,834

    Re: Error 13 type mismatch

    Cell has Err value?

    Try change to
    Do While (Not IsError(ActiveCell.Value)) * (IsEmpty(ActiveCell.Value))

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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