+ Reply to Thread
Results 1 to 13 of 13

Trying to delete row based on value in cell

  1. #1
    Registered User
    Join Date
    10-26-2016
    Location
    U.K
    MS-Off Ver
    2010
    Posts
    7

    Trying to delete row based on value in cell

    hi,

    I'm trying to delete rows where the time in ColumnC is between 18:30 and 08:55, not sure whats wrong with my coding but when I run it it removes all data and only leaves the header?

    Please Login or Register  to view this content.

  2. #2
    Forum Expert
    Join Date
    03-28-2012
    Location
    TBA
    MS-Off Ver
    Office 365
    Posts
    12,454

    Re: Trying to delete row based on value in cell

    should not be and

    If .Cells(idel, "C") > "18:30:00" and.Cells(idel, "C") < "08:55:00" Then

  3. #3
    Registered User
    Join Date
    10-26-2016
    Location
    U.K
    MS-Off Ver
    2010
    Posts
    7

    Re: Trying to delete row based on value in cell

    Well spotted however that still doesnt delete the rows

  4. #4
    Forum Expert
    Join Date
    03-28-2012
    Location
    TBA
    MS-Off Ver
    Office 365
    Posts
    12,454

    Re: Trying to delete row based on value in cell

    Most likely reason would be excel does not recognise the time format. You can record a filter function and see how excel picks up the relevant range.

  5. #5
    Registered User
    Join Date
    10-26-2016
    Location
    U.K
    MS-Off Ver
    2010
    Posts
    7

    Re: Trying to delete row based on value in cell

    hi,

    i have already set the format of the column to hh:mm:ss - its driving me mad

  6. #6
    Forum Expert
    Join Date
    03-28-2012
    Location
    TBA
    MS-Off Ver
    Office 365
    Posts
    12,454

    Re: Trying to delete row based on value in cell

    Could you attach the sample which is driving you mad?

  7. #7
    Registered User
    Join Date
    10-26-2016
    Location
    U.K
    MS-Off Ver
    2010
    Posts
    7

    Re: Trying to delete row based on value in cell

    please find it attached, hopefully you can spot something which i have missed
    Attached Files Attached Files

  8. #8
    Forum Expert
    Join Date
    03-28-2012
    Location
    TBA
    MS-Off Ver
    Office 365
    Posts
    12,454

    Re: Trying to delete row based on value in cell

    If .Cells(idel, "C") > "17:35:00" And .Cells(idel, "C") < "08:55:00" Then

    Unless 08 is the next day, it can not be less than 17.35.

    For e.g 19:15:01
    which is the last row is greater than 17:35:00, but it can not be less than 08.55.
    If I were to convert the time in to digital, I get the following
    0.371539352: for 08:55:00

    0.802094907:19:15:01

    0.802094907 can be less than 0.371539352

  9. #9
    Forum Expert
    Join Date
    03-28-2012
    Location
    TBA
    MS-Off Ver
    Office 365
    Posts
    12,454

    Re: Trying to delete row based on value in cell

    The first OR statement you had works, but I do not think it is right if you are looking between the two times.

  10. #10
    Registered User
    Join Date
    10-26-2016
    Location
    U.K
    MS-Off Ver
    2010
    Posts
    7

    Re: Trying to delete row based on value in cell

    ok thanks for the explanation, do you think it would be possible to achieve my goal of being able to delete all rows if the time is between 17:35 and 08:55?

    Just for clarification i did try the following but it again it did not delete anything.

    If .Cells(idel, "C") > "17:35:00" Then

  11. #11
    Forum Expert
    Join Date
    03-28-2012
    Location
    TBA
    MS-Off Ver
    Office 365
    Posts
    12,454

    Re: Trying to delete row based on value in cell

    See if this works for you.
    Attached Files Attached Files

  12. #12
    Registered User
    Join Date
    10-26-2016
    Location
    U.K
    MS-Off Ver
    2010
    Posts
    7

    Re: Trying to delete row based on value in cell

    hi, that didnt work for me? it didnt error or remove the rows.

  13. #13
    Forum Expert
    Join Date
    03-28-2012
    Location
    TBA
    MS-Off Ver
    Office 365
    Posts
    12,454

    Re: Trying to delete row based on value in cell

    I put the code on the module and have already run it. You can copy the original data (Sheet2) in to sheet1 and run it. I ended up with 6 rows.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] delete row based on cell value vba
    By 1vision in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 11-26-2014, 01:30 AM
  2. Delete Row # based on cell value
    By stockgoblin42 in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 06-13-2013, 02:23 PM
  3. Delete row based on cell FORMAT (color, font, etc) (not based on cell value)
    By trobey in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 12-12-2012, 10:39 AM
  4. Delete row based on cell value
    By oOarthurOo in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 04-09-2010, 03:35 PM
  5. Delete row based on Cell value
    By MSchibs in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 03-04-2010, 01:24 AM
  6. Delete Row Based on Cell of Another
    By pkbravo in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 10-12-2007, 12:34 PM
  7. delete row based on value of cell in row
    By AD108 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 07-29-2006, 11:25 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