Link to home
Start Free TrialLog in
Avatar of tommym121
tommym121Flag for Canada

asked on

Cell Visualy look blank but ISBlank() function return false

I have a cell looks blank in the spreadsheet, but when I use ISBLANK () to test, it returns FALSE and when I use ISEMPTY() tot test it returns #NAME?.

How should I test it?
Avatar of Excel amusant
Excel amusant

If your cell has formula and the result of formula is blank then using function isblank results false. Isempty is used in VBA.

Try this to test the cell.

=IF(A2="","True","False")
Hi

ISEMPTY() is not  a formula. This is why you have #NAME?

 ISBLANK() will tell TRUE if the cell is really empty but if you have an empty space in it, it will tell you FALSE
ASKER CERTIFIED SOLUTION
Avatar of Danny Child
Danny Child
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
One of the more interesting initiatives the Excel team has taken on in the past year is soliciting ideas for improving Excel...from the user community. They do this in the UserVoice set of webpages.

As it happens, one of the suggestions is a function that can be used to test whether the cell is truly "virgin" in the sense that there is nothing in it, not even an empty string =""

If you like this suggestion, please consider voting for it. The more votes a suggestion gets, the higher it rises in the Microsoft's prioritization of what to do. https://excel.uservoice.com/forums/304921-excel-for-windows-desktop-application/suggestions/9095062-give-us-a-proper-null-worksheet-function
Avatar of tommym121

ASKER

Thanks