S
stakar
I have the following 2 columns (these are examples)
A
----
22
00
01
00
01
10
07
00
15
and column B
B
---
00
I want to pass the data of column A in an array, then i want to search
for each value within the array, that is the next in position of
column's B value.
in the particular example i m searching for the next in position value
of '00' (the '<-- ' values are the result)
A
22
00
01<--
00
01<--
10
07
00
15<--
00
01<--
Then i want to create a column with the unique values in sort order of
the above '<--' values and next to them to count the appearance
In the particular example i m searching for the next in position value
of '00' (the '<-- ' values are the result)
C D
-------
01 3
15 1
So we get the value '01' to appears 3 times and the value '15' to
appears 1 time.
I want all of them to be made using arrays because i want speed and
also the data will be written in an existing worksheet.
Thanks in advance
Stathis
A
----
22
00
01
00
01
10
07
00
15
and column B
B
---
00
I want to pass the data of column A in an array, then i want to search
for each value within the array, that is the next in position of
column's B value.
in the particular example i m searching for the next in position value
of '00' (the '<-- ' values are the result)
A
22
00
01<--
00
01<--
10
07
00
15<--
00
01<--
Then i want to create a column with the unique values in sort order of
the above '<--' values and next to them to count the appearance
In the particular example i m searching for the next in position value
of '00' (the '<-- ' values are the result)
C D
-------
01 3
15 1
So we get the value '01' to appears 3 times and the value '15' to
appears 1 time.
I want all of them to be made using arrays because i want speed and
also the data will be written in an existing worksheet.
Thanks in advance
Stathis