Written by Allen Wyatt (last updated July 11, 2020)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and 2021
There are times when it is helpful to know if a cell contains something—it doesn't really matter what it contains, just that it contains something. In these instances, there are two ways you can approach the problem.
The first solution is to simply use the LEN function to determine if there is a length to what is contained in a cell. For instance, let's say you wanted to check if there was a value in cell F1. You could use the following:
=IF(LEN(F1)>0,"Found something there","Nothing is there")
If there is nothing in cell F1, then the length will be equal to zero. If there is something in the cell, then the length will be greater than zero.
The second solution is a variation on the LEN approach. All you need to do is check to see if there is anything in the cell. This may sound odd, but it is easier when you see the formula. For example, the following will check to see if there is anything in cell B4:
=IF(B4<>"","Found something there","Nothing is there")
The test in this formula is True if there is anything in the cell. If the cell is empty, then the test fails.
Another solution you can use is the ISBLANK worksheet function. This function returns True if the target cell is blank, and False if it contains anything.
As an example, let's suppose you want to check if the user has entered something in cell D7. You can use the following to make the determination:
=IF(ISBLANK(D7),"Input values missing",D7)
In this case the cell containing this formula would contain the same value as in D7, provided something was there. If there is nothing in D7, then the cell contains the text "Input values missing."
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (11439) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and 2021. You can find a version of this tip for the older menu interface of Excel here: Checking for an Entry in a Cell.
Dive Deep into Macros! Make Excel do things you thought were impossible, discover techniques you won't find anywhere else, and create powerful automated reports. Bill Jelen and Tracy Syrstad help you instantly visualize information to make it actionable. You’ll find step-by-step instructions, real-world case studies, and 50 workbooks packed with examples and solutions. Check out Microsoft Excel 2019 VBA and Macros today!
Want to move data from one worksheet to another based on a text value in a column. There are a couple of ways you can ...
Discover MoreNeed a quick way to jump to a particular part of your worksheet? You can do it by using the Go To dialog box.
Discover MoreDo you want to limit what can be entered into a particular cell in your worksheet? Here are three separate ways you can ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2022-04-09 16:03:55
John Mann
Data Validation would be another method or checking to see if a cell contains data.
I had a situation where I needed for force any entry in to one cell before another cell could also have an entry, i.e. the 2nd cel could only have data entered if the another cell was non-blanck. I used data validation in that case. I used a formula based rule like this one "=C2<>0" (without the quotes), I also had the "Ignore Blanks" check box clear. This prevented data being entered into the cell where the data validation was applied unless there was already an entry in C2. Of course, data validation could also be applied to C2 to ensure that the correct type or range of data was entered there.
2020-08-19 21:52:03
Peter
I had a similar problem when I was entering data. I had opted to hide zeros, so I needed to show the cells with zero but not see the value. I did this with a conditional format that used the formula like =NOT(ISBLANK(A1)) that applied a soft pastel colour to the fill when true. Note the lack of $ signs in the formula. This seems to work fine with text, numbers, errors and formulas.
2020-08-19 09:44:07
Peter Atherton
Further to Mike's comment
ISBLANK returns false if aef contains a formula
e.g. if(a1=0,"","Value")
2020-08-18 12:34:41
JMJ
@Mike
Very useful remark! Thanks!
2020-07-11 12:50:24
Mike
These 3 methods are not exactly equal!
If the target cell contains just a single quote, the ISBLANK() method will detect it, but the LEN() method and the <>"" method will find nothing. Might be relevant if searching for the last used cell, as Find/Replace doesn't find it either.
2020-07-11 11:56:34
Steve D
Thank you for providing the variety of methods to detect cell content. I usually just jump to the Boolean option (<>), but it's a greater reminder to see the 2 functions, LEN and ISBLANK, as options. You're providing a great service to us in the Excel community! Cheers
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments