+ Reply to Thread
Results 1 to 2 of 2

EXCEL FORMULA

  1. #1

    EXCEL FORMULA

    I need to see if anyone can help me. I have data in cell E5 and I need
    to delete the data in cell D7. I need a formula to check to see if
    there is data in the cells in column E and if so, then delete the data
    in column D.

    Thanks,

    Tom


  2. #2
    Bob Phillips
    Guest

    Re: EXCEL FORMULA

    For i = 1 To Cells(Rows.Count,"E").End(xlUp).Row
    If Cells(i,"E").Value <> "" Then
    Cells(i,"D").ClearContents
    End If
    Next i

    --
    HTH

    Bob Phillips

    <[email protected]> wrote in message
    news:[email protected]...
    > I need to see if anyone can help me. I have data in cell E5 and I need
    > to delete the data in cell D7. I need a formula to check to see if
    > there is data in the cells in column E and if so, then delete the data
    > in column D.
    >
    > Thanks,
    >
    > Tom
    >




+ 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