Blank cells and empty cells

tanababa

New Member
Joined
Aug 7, 2008
Messages
43
Hi,
I have selected all cells in my sheet and did "clean all".
When I press CTRL+END the cursor goes to cell R202. The sheet should be empty!
When I use the "goto special..." window and command it to go to blank cells I get a whole range from A1 to R202 selected.
How do I get rid of that?
What is the difference between a blank cell to an empty cell?
Thank you,
Tamir
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Hi,
I have selected all cells in my sheet and did "clean all".
When I press CTRL+END the cursor goes to cell R202. The sheet should be empty!
When I use the "goto special..." window and command it to go to blank cells I get a whole range from A1 to R202 selected.
How do I get rid of that?
What is the difference between a blank cell to an empty cell?
Thank you,
Tamir

A cell, say A2, is referred to as a blank cell when:

=COUNTA(A2)

==> 1

=ISBLANK(A2)

==> FALSE

Such evaluations generally obtain if A2 houses a formula returning "" as result.

A cell is empty if it's unused and when:

=COUNTA(A2)

==> 0

or

=ISBLANK(A2)

==> TRUE

Blank and empty are also used interchangeably, specifically if the context permits such.
 
Upvote 0
I checked and the cells A1:P202 are all empty.
=COUNTA(A1:P202) returns 0.
So... why CTRL+END goes to cell P202?
Thankx,
Tamir

p.s - will it help if I load the file to a server and put a link?
 
Upvote 0
I checked and the cells A1:P202 are all empty.
=COUNTA(A1:P202) returns 0.
So... why CTRL+END goes to cell P202?
Thankx,
Tamir

p.s - will it help if I load the file to a server and put a link?

What do you get with:

A2:

=LEN(P202)

B2:

=CODE(P202)
 
Upvote 0
Bingo...
The solution for me is:
"...to reset the last cell, is like mention delete all rows and coloums that are not used then select cell A1 and save..." from http://www.mrexcel.com/forum/showthread.php?t=216846&highlight=reset+cell

However, I still did not understand the difference in definition or in terms of excel between blank vs. empty cell ( I understood wjat the result of the various functions will do to those cells...)
Thanks,
Tamir
 
Upvote 0
A blank cell appears empty - it contains characters that are not visible to the user, i.e. LEN(A1) of such a cell is a positive integer

An empty cell contains nothing at all, i.e. LEN(A1) of such a cell is 0
 
Last edited:
Upvote 0
Bingo...
The solution for me is:
"...to reset the last cell, is like mention delete all rows and coloums that are not used then select cell A1 and save..." from http://www.mrexcel.com/forum/showthread.php?t=216846&highlight=reset+cell

That's great.

However, I still did not understand the difference in definition or in terms of excel between blank vs. empty cell ( I understood wjat the result of the various functions will do to those cells...)
Thanks,
Tamir

In A1 enter:

=""

In B1 enter:

=IF(C1="","",10)

Both A1 and B1 will "look" empty, but they are not. They house formulas returning/calculating nothing. Such cells are "blank". Unused, untouched cella are often referred as empty cells, but also as blank. The latter usage might create some confusion.
 
Upvote 0

Forum statistics

Threads
1,215,493
Messages
6,125,128
Members
449,206
Latest member
burgsrus

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top