HUH?
wanna try to make that a little clearer I read it five times and my head is still spinning.
A B C D E _________________________________________
Simon
I think I understand what info you need but the format of the table you want does not come out clearly on the message board. Suggest you provide details of what you need as follows :-
ColA - Positive whole numbers of any value and any sequence. Number of rows can vary. No blank cells.
ColB - Either numbers or blanks. Rows with data will not extend further than Col A rows.
ColC - (Description required)
ColD - (Description required)
ColD - (Description required)
Ada
Simon
Create a Name called Data for the range of data in Column A.
Enter the following formula in cell C1 and drag it down the column.
=IF(B1="","",COUNTIF(data,data))
This does not produce a summary - it shows in column C the count of the number in col A of the same row.
(Darren - sorry if this is not too clear)
Ada
Sorry - I mean't David not Darren
I'm having a bad day. The previous formula doesn't work. Start again :-
Put the following formula in C1 and drag it down :-
=IF(B1="","",A1)
Create a Name called Data and put the following in the RefersTo box :-
=$C$1:$C$1000
If the rows are likely to be more than 1000, increase the formula accordingly.
Put the following formula in D1 and drag it down :-
=IF(C1="","",COUNTIF(data,data))
I don't particularly like the above because it uses two columns. There must be a way of arriving at one formula in one column - I will post again if I manage to work it out.
But let me know if you don't need it.
Ada
1 | 2 5
Yeah, I know, it's difficult to verbalise these problems. So I'll summarise
-in Column A, numbers from 1 to infinity occur,
-the numbers in column A are not numerically ascending or descending, they occur in any order, and the numbers often repeat, ie. there is no sequence
-in Column B, either a number, or, a blank cell will occur
- the value of the number in Column B is unimportant, it only matters whether the cell contains a number, or is blank
I want to know
-the number of occasions when a specific number occurs in column A, without a blank cell in column B.
- I wish to build a table thus,
A B C D E _________________________________________
1|Actual No.|Occurences of No. in A
Column A | without a blank cell in Col. B
2| -------------------------------------
3| 1 | 52
4| 2 | 67
5| 3 | 73
6| 4 | 85
7| 5 | 92
Etc.
I hope this clarifies my dilema..