simple comparing 2 columns of data

krisbuddies

New Member
Joined
Jul 30, 2018
Messages
14
hi guys

Data as follows
abcde
1johnamy
2bobbob
3timkeith
4amyemma
5beckylisa
6keithjohn
7georgelisa
8dandan
9lisatim
10emmabecky

<tbody>
</tbody>


What I need is a formula (preferably, I don't like macro's!) in e that looks at columns c & a and shows how much that person has moved up or down.

So
e1 looks at c1, sees "amy", looks at a1:a10 to find "amy", therefore results in +3 (4-1).
e2 looks at c2, sees "bob", looks at a1:a10 to find "bob", therefore results in 0 (2-2).


Does that make sense??

Thanks in advance guys
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
try this


Book1
ABCDE
1johnamy3
2bobbob0
3timkeith3
4amyemma6
5beckylisa4
6keithjohn-5
7georgelisa4
8dandan0
9lisatim-6
10emmabecky-5
Sheet1
Cell Formulas
RangeFormula
E1=MATCH(C1,A:A,0)-MATCH(C1,C:C,0)
 
Upvote 0

Forum statistics

Threads
1,214,646
Messages
6,120,720
Members
448,986
Latest member
andreguerra

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