+ Reply to Thread
Results 1 to 11 of 11

Using the function ISNA in a macro

  1. #1
    Registered User
    Join Date
    11-30-2007
    Location
    Edinburgh, UK
    MS-Off Ver
    2003
    Posts
    84

    Using the function ISNA in a macro

    Hi,

    Hoping someone will be able to help me out.

    I've got a macro which basically reformats data from another source.

    It then places all the data on a new sheet. My problem is that some of the formula that the macro places on the new sheet come back with the result #N/A - which is fine, as they are the result of a lookup.

    What I want to try and do, is at the end of the macro, get it to delete the row if the activecell is showing as #N/A

    I've tried to write a small bit of code for it...


    Do
    If ActiveCell.Value = "ISNA"
    Rows(ActiveCell.Row).Columns("A:M").Select
    Selection.Delete
    ActiveCell.Offset(1, 0).Select
    Else
    ActiveCell.Offset(1, 0).Select
    End If

    Loop While ActiveCell.Value <> "0"
    The code does not seem to like 'ISNA' or '#N/A'. Any ideas on how I can get past this?

    Cheers
    Last edited by hriggs; 11-04-2008 at 11:42 AM.

  2. #2
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481
    Please Login or Register  to view this content.
    Cheers
    Andy
    www.andypope.info

  3. #3
    Forum Contributor
    Join Date
    05-21-2004
    Location
    UK
    Posts
    136
    Please Login or Register  to view this content.

  4. #4
    Registered User
    Join Date
    11-30-2007
    Location
    Edinburgh, UK
    MS-Off Ver
    2003
    Posts
    84
    Excellent!

    Thanks very much for the super fast respone both

  5. #5
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980
    FWIW, you could also use:
    Please Login or Register  to view this content.

  6. #6
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481
    Be aware when using the .Text property that columns that are not wide enough will display ###'s and the test will return False.

  7. #7
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980
    Good point. (Probably fairly safe with #N/A in most cases! )

  8. #8
    Registered User
    Join Date
    11-30-2007
    Location
    Edinburgh, UK
    MS-Off Ver
    2003
    Posts
    84
    cool, thanks

  9. #9
    Registered User
    Join Date
    11-30-2007
    Location
    Edinburgh, UK
    MS-Off Ver
    2003
    Posts
    84
    For anyone that might want to use this code, this is what I have at the end of it.

    I've had to change the code slightly as
    Loop While ActiveCell.Value <> "0"
    did not work. The #N/A was returning a value of 'Error 2404' or something like that, so = 0 was invalid.

    To address this I used this extra bit of code

    Sheets("Sheet").Select
    Range("B3").Select
    l = Cells(Rows.Count, "B").End(xlUp).Row 'I've used this to find the length of the data (in rows)
    Range("A3").Select 'In column A I have a formula, so I've used this as the data to look at to see when the data has reached the bottom as this will always have a value unless there is no data in column B
    Selection.Copy
    Range("A3:A" & l).Select 'This shows the macro where to copy the formula down to, using 'I', defined above as the ending cell in the range
    ActiveSheet.Paste
    Calculate

    Range("B3").Select

    Do
    If Application.WorksheetFunction.IsNA(ActiveCell) Then
    Rows(ActiveCell.Row).Columns("A:M").Select
    Selection.Delete
    ActiveCell.Offset(0, 1).Select ' This bit was also changed as having it as 'ActiveCell.Offset(1, 1).Select' meant that it would skip a row when an #N/A row was found and deleted
    Else
    ActiveCell.Offset(1, 0).Select
    End If

    Loop While ActiveCell.Offset(0, -1) <> "" 'This now looks at the forumla in column A, instead of the value in B to know when to stop the loop

    Range("B3").Select
    Last edited by hriggs; 11-04-2008 at 11:12 AM.

  10. #10
    Registered User
    Join Date
    11-30-2007
    Location
    Edinburgh, UK
    MS-Off Ver
    2003
    Posts
    84
    Hope there's something useful in there for anyone that might need something similar

    Had to rewite it a few time to make sure it was not total rubbish!

  11. #11
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481
    This may save you doing all the selecting of cells.


    Please Login or Register  to view this content.

+ Reply to Thread

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