+ Reply to Thread
Results 1 to 7 of 7

Deleting cells depending on content of another cell

  1. #1
    Forum Contributor
    Join Date
    01-29-2008
    Location
    Scotland
    MS-Off Ver
    2003
    Posts
    237

    Deleting cells depending on content of another cell

    Hiya, I hope some one can help

    I have a number of column in my spread sheet, if one cell in a column contains certain data, then i need another cell to remain blank.

    An example

    Column 1 contains a ref number only if Column 2 contains a letter
    But if Column 4 contains either S, B, or E then if anything is in Column 2 this is then cleared from that cell

    Hope that explains everthing.

    Gareth

  2. #2
    Forum Expert teylyn's Avatar
    Join Date
    10-28-2008
    Location
    New Zealand
    MS-Off Ver
    Excel 365 Insider Fast
    Posts
    11,374
    Hi,

    you can not delete a manually entered value from a cell with a function in another cell. You'd need VBA to do that.

    You can use an IF statement in the cell, so that if a condition is met, then a value is displayed. Something along the lines of

    =IF(match({"S","B","E"},D1)>0,"A","")

  3. #3
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    =IF(match({"S","B","E"},D1)>0,"A","")
    Teylin, that formula returns "A" for any character in D1 other than T through Z and a few odd others.

    Maybe =IF(OR(D1 = {"S","B","E"}), "A", "")?
    Entia non sunt multiplicanda sine necessitate

  4. #4
    Forum Expert teylyn's Avatar
    Join Date
    10-28-2008
    Location
    New Zealand
    MS-Off Ver
    Excel 365 Insider Fast
    Posts
    11,374
    Ooops, forgot to test for a true match, so my correction would be

    =IF(ISNA(MATCH({"S","B","E"},D1,0)),"","A")

  5. #5
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    =IF(ISNA(MATCH({"S","B","E"},D1,0)),"","A")
    That only works for "S" ...

  6. #6
    Forum Expert teylyn's Avatar
    Join Date
    10-28-2008
    Location
    New Zealand
    MS-Off Ver
    Excel 365 Insider Fast
    Posts
    11,374
    my head's not screwed on properly today. I'd better stop giving people suggestion.

    this one should work, though

    =IF(ISNA(MATCH(D1,{"S","B","E"},0)),"","A")

  7. #7
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    That oughta work

+ 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