+ Reply to Thread
Results 1 to 11 of 11

How to show a blank cell if data isn't entered in a specific cell

  1. #1
    Registered User
    Join Date
    09-28-2021
    Location
    London
    MS-Off Ver
    365
    Posts
    4

    How to show a blank cell if data isn't entered in a specific cell

    Hi all,

    I am trying to work out how to keep a cell blank until another piece of data is entered.

    I want my output in Cell M5 for example.

    I have the forumla to work out what I need however the cell K5 will be updated once it's been sent.

    =IF($H5="Claim",EDATE(K5,3),"")

    At the moment cell M5 is returning a date of 31/03/00 as no data is entered in K5 but I would like to keep this blank until a date is present in cell K5.

    Any help would be most helpful.

    Thanks

  2. #2
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    81,063

    Re: How to show a blank cell if data isn't entered in a specific cell

    Welcome to the forum.

    Try this in M5:

    =IF(K5="","",your_formula)
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

  3. #3
    Forum Guru
    Join Date
    02-27-2016
    Location
    Vietnam
    MS-Off Ver
    2016
    Posts
    5,914

    Re: How to show a blank cell if data isn't entered in a specific cell

    Or try:

    =IF(AND($H5="Claim",K5>0),EDATE(K5,3),"")

  4. #4
    Registered User
    Join Date
    09-28-2021
    Location
    London
    MS-Off Ver
    365
    Posts
    4

    Re: How to show a blank cell if data isn't entered in a specific cell

    Hi Ali,

    Thanks for the welcome and swift response. I tried that and it's stating you've entered too many arguments for this function.

    Trying to see what the issue is with it.

    Thanks

  5. #5
    Registered User
    Join Date
    09-28-2021
    Location
    London
    MS-Off Ver
    365
    Posts
    4

    Re: How to show a blank cell if data isn't entered in a specific cell

    Phuocam, amazing thank you that has worked perfectly Thank you once again.

  6. #6
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    81,063

    Re: How to show a blank cell if data isn't entered in a specific cell

    You must have missed something:

    =IF(K5="","",IF($H5="Claim",EDATE(K5,3),""))

  7. #7
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    81,063

    Re: How to show a blank cell if data isn't entered in a specific cell

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED.

    Also, you may not be aware that you can thank those who have helped you by clicking the small star icon located in the lower left corner of the post in which the help was given. By doing so you can add to the reputation(s) of all those who helped.

  8. #8
    Registered User
    Join Date
    09-28-2021
    Location
    London
    MS-Off Ver
    365
    Posts
    4

    Re: How to show a blank cell if data isn't entered in a specific cell

    Quote Originally Posted by AliGW View Post
    You must have missed something:

    =IF(K5="","",IF($H5="Claim",EDATE(K5,3),""))
    Thank you Ali, just tried that I forgot to put my forumla as IF again, tried this and it also works a treat. Thanks for the both options. You have made my day

  9. #9
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    81,063

    Re: How to show a blank cell if data isn't entered in a specific cell

    Glad to help.

  10. #10
    Registered User
    Join Date
    04-17-2019
    Location
    New York
    MS-Off Ver
    2016
    Posts
    6

    Re: How to show a blank cell if data isn't entered in a specific cell

    I have a similar issue, trying to show days remaining from a particular date if there's a date enter my formula works fine, however if left blank I get a "#value" error.

    current formula
    =IF(ISBLANK(I5),"",I5-TODAY())

    any help will be greatly appreciated

    Disregard I tried your earlier suggestion and it worked fine.

    Thanks
    Last edited by Orlando1; 09-28-2021 at 01:24 PM.

  11. #11
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    81,063

    Re: How to show a blank cell if data isn't entered in a specific cell

    In future, please start your own thread - don’t piggy back someone else’s. Thanks.

+ 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. Leave cell blank if no data entered into cell
    By MOTOFAN91 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 08-27-2021, 11:24 AM
  2. How to Fix this Formula to Show Blank if Nothing is Entered into Cell
    By NiceKeester in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 07-16-2019, 12:01 AM
  3. [SOLVED] Leaving a cell blank until the data is entered in another cell
    By Dewdrop in forum Excel Formulas & Functions
    Replies: 12
    Last Post: 01-07-2017, 04:54 PM
  4. [SOLVED] Need cell with formula to show as blank instead of error message when no data is entered
    By jaiverson in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 01-05-2016, 09:15 PM
  5. [SOLVED] Formula for a cell value to show as blank till the varible has been entered
    By arkadd61 in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 01-27-2013, 09:46 PM
  6. Cell to show blank until data entered ?
    By conks in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 08-13-2008, 09:12 AM
  7. Show cell as blank until value is entered
    By Ltat42a in forum Excel General
    Replies: 7
    Last Post: 06-16-2008, 01:50 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