Matching instead of VLookup

kiyo052

Board Regular
Joined
Oct 11, 2013
Messages
134
I am trying to figure out the formula for this and I can't seem to get it done:

Everything in Column B must equal the "Completed on Time" in column F
Everything in Column C must equal the "Completed on Time" in Column G


For example, I need:
B2= F10
C2= G10
B3= F3
C3= G3
B4= F6
C4= G6


ABCDEFGHI
1Name
Activity Completed on TimeFirst Intro Completed on TimeRow LabelsActivityFirst IntroGrand Total
2Steve92.25%44.67%David
0.10%0.43%0.16%
3David
0.93%10.60%Completed On Time0.93%10.60%5.80%
4John66.67%0.00%Completed Overdue99.07%89.40%94.20%
5John0.01%0.02%0.01%
6Completed On Time66.67%0.00%46.67%
7Completed Overdue33.33%0.00%23.33%
8Due Late0.00%100.00%30.00%
9Steve0.18%0.66%0.28%
10
Completed On Time92.25%44.67%70.46%
11
Completed Overdue7.75%54.73%29.27%
12Due Late0.00%0.59%0.27%

<tbody>
</tbody>

Thank you in advance for anyone that can figure this out!!
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Hi,

Paste this into B2 and copy down the table
=OFFSET(INDIRECT(CONCAT("E",MATCH(A2,$E:$E,0))),1,1)

Paste this into C2 and copy down the table
=OFFSET(INDIRECT(CONCAT("E",MATCH(A2,$E:$E,0))),1,2)


For Steve it works as..
The MATCH element returns the row of the name 2
CONCAT creates the cell reference as text E2
INDIRECT activates the text as a cell reference
Offset moves from that cell reference 1 row down and 1 column across
(Column C is 1,2 to move 1 row down and 2 columns across)

Hope that helps..
 
Upvote 0
Thank you for the help! Is there another way to do this without using Concat? The information from E to H is going to be on a different sheet. Someone wrote a different formula but it doesnt seem to be working:

=IFERROR(INDEX($F:$G,MATCH($A:$A,$E:$E,0)+1,MATCH(D$1,$F$1:$G$1,0)),0)

Any suggestions?
 
Upvote 0
The IFERROR function should be working but wouldn't if the data is on different sheets.

Let me know the layout of the sheets and I'll take a look
 
Upvote 0

Forum statistics

Threads
1,215,518
Messages
6,125,293
Members
449,218
Latest member
Excel Master

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