answersLogoWhite

0


Best Answer

This may be too simplistic, but the number of columns between two cells can be counted as follows:

num_cols = CELL("col") - CELL("col",A1)

that would give you the number of columns between the current cell and column A.

for a row count, you could switch the "info_type" parameter to "row" (1st parameter)

num_rows = CELL("row") - CELL("row",A1)

the number of rows between the current cell and A1.

by combining them both you can obtain the number of cells in between. Keep in mind that if the current cell is before the target cell, the number will be negative (thus the addition of the absolute function).

numcells = (abs(num_rows) +1) * (abs(num_cols)+1) - 2

this math assumes you are using two distinct cells and not the same cell, otherwise the result would be -1.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you count the number of cells between two particular cells in excel?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the difference between count and countA?

Count: counts the number of cells with numeric values in a range. Counta: counts the number of cells containing data (letters or numbers) in a range. Counta counts the number of non-blank cells in a range. Counta will therefore exclude any empty cells, which would be included if the count function were used.


What is the highest number we can count to?

There is no such number. If we could count to any particular number, then we can always count to the next one. And then the next. And so on.


How can you count the number of cells in an aquatic plant?

There is not a way to count the cells on a aquatic plant. The cells on a aquatic plant are so small.


What is the AutoCalculate area that displays the number of cells containing numbers in the selected range?

In Excel you can use the COUNT function to count the amount of cells that have numbers in them and the COUNTA function to count cells that have any kind of data in them.


What is a function to find the number of values in cells?

In Excel is it COUNT.


I am a number between 24 and 34 you get to me when you count by twos you get to me when you count by fives what number am I?

30


What is the function of hemocytometer in cell count?

A hemocytometer is a device with a small, precise grid for which the area and depth are known. It is used to count cells, though was originally used for counting blood cells. By counting the number of cells in a given sample space, a generalization can be made about the population, or entire sample.


What is cells body?

There is no accurate count on the number of cells in the human body. The accepted estimate is about 50 trillion.


What is the normal rbc?

The normal red blood cell count for an adult male is between 4.7 and 6.1 cells/mcL. The normal count for an adult female is between 4.2 and 5.4 cells/mcL.


Does The COUNT function in Excel returns the number of all cells in a range that contain any type of data?

No. The COUNT function counts only numeric values, including dates and times. It will not count cells with text or logical data or blank cells. COUNTA will count all kinds of data.


What counts the number of cells in a range that contain numeric data?

The COUNT function will do that.


What is the name of the function that returns number of cells with numerical values?

The COUNT function.