O
onewebclick
I have 2 column a,b with the following row in the below format,
A B
-----------
1 10
2 36
3 12
4 8
5 2
6 30
Then in the C colum the rows are generated using this function:
=ROUND(RAND()*(7-1)+1,0), it changes radomly because of the rand function
between 1-6.
C
---
3
2
1
4
6
5
2
2
I need a D colum in such a way for a number 'N' in C row I want to pick
the 'Nth' row in A colum and display the B's Nth row. so for (eg) in this
case it would be,
D
---
12
36
10
8
30
2
36
36
please help on what function should i use to generate the D column.
A B
-----------
1 10
2 36
3 12
4 8
5 2
6 30
Then in the C colum the rows are generated using this function:
=ROUND(RAND()*(7-1)+1,0), it changes radomly because of the rand function
between 1-6.
C
---
3
2
1
4
6
5
2
2
I need a D colum in such a way for a number 'N' in C row I want to pick
the 'Nth' row in A colum and display the B's Nth row. so for (eg) in this
case it would be,
D
---
12
36
10
8
30
2
36
36
please help on what function should i use to generate the D column.