+ Reply to Thread
Results 1 to 2 of 2

Evaluating a Sting in VBA

  1. #1
    Mike
    Guest

    Evaluating a Sting in VBA

    Hello all,

    I'm trying to write a code that will read the value of a cell as a string.
    If the string in a cell does not begin with a "<" character, the row that the
    evaluated cell is in should be deleted.

    I'm thinking I should using the "instr" code, but I can't seem to get it
    working.

    Any help would be greatly appreciated,

    Mike

  2. #2
    Tom Ogilvy
    Guest

    Re: Evaluating a Sting in VBA

    dim col as long, lastrow as long, i as long
    col = 1
    lastrow = cells(rows.count,col).End(xlup)
    for i = lastrow to 1 step -1
    if instr(1,cells(i,col).value,"<",vbTextcompare) then
    cells(i,col).EntireRow.Delete
    end if
    Next i

    Change the value assigned to col to reflect the column to check.

    --
    Regards,
    Tom Ogilvy


    "Mike" <Mike@discussions.microsoft.com> wrote in message
    news:FC690F92-D356-495B-B554-A2AD727FC5B2@microsoft.com...
    > Hello all,
    >
    > I'm trying to write a code that will read the value of a cell as a string.
    > If the string in a cell does not begin with a "<" character, the row that

    the
    > evaluated cell is in should be deleted.
    >
    > I'm thinking I should using the "instr" code, but I can't seem to get it
    > working.
    >
    > Any help would be greatly appreciated,
    >
    > Mike




+ 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