Formula help

abignale

New Member
Joined
Jun 18, 2018
Messages
4
Hello. I am building a call center agent score card.

on sheet 1 I will have my report data pasted in.

On sheet 2 I will have a score card template in place.

In the first box I will have a data validation box set up with a list drop down of all of the agents.

In all of the other boxes on the score card I would like to have a formula read as follows:

If Box A1 (The box with the name drop downs) = bob smith (the first name on the sheet 1) then all of the other boxes will equal different values of the same row.

So - on sheet 2: If A1 = (Sheet1 B3) then (sheet 2) C1 should = (Sheet 1 B4)
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Hi there.
In each of the score card cells you will need to use index-match, and point it to the value you want returned from the data list.

So, imagine on Sheet1 you have a column with the Agent name (like it will appear on the dropdown), and then columns with different values on same row.
On sheet2 in each of the cells for the scorecard you would have this formula:


Code:
=index(sheet1!B:B,match($a$1,sheet1!A:A,0))

This assumes the agents names are listed in column A of sheet1. Adjust as needed. This returns the data from column B of the matched row. Also adjust as neede for each cell in the scorecard.
Perhaps a better solution would be to simply make a serious of pivots controlled by slicers. :)
 
Upvote 0
Thank you for the response. That formula does not work. Or (probably more accurately) I could not get it to work. I have included some visuals to better illustrate my needs.

Sheet 1

AgentAHTACWQA SCORE
Bob Smith3:0000:3095%
Jane Doe3:1500:2096%
Tom Jones3:2800:3592%
Mark Paul2:5800:2896%
Sam Smith3:1500:2398%

<tbody>
</tbody>


Sheet 2
Agent NameBob Smith
KPICurrent Score
AHT3:00
ACW00:30
QA SCORE95%

<tbody>
</tbody>

So on sheet 2 where it says "Bob Smith" this will be my data validation drop down box (populated from the names on sheet 1). When I select Bob Smith from the drop down list I would like the boxes below to auto populate with the data from Sheet 1 for Bob Smith. If I select Jane Doe from the same drop down then all the info would change to Jane Doe's info from sheet 1. I have tried a few if formulas but nothing works. When I tried the formula you suggested it just defaults to NA.
 
Upvote 0
Names a Data Validated in Sheet 2 B1,


Try in the "AHT" row;

Code:
=INDEX(Sheet1!B$2:B$6,MATCH($B$1,Sheet1!$A$2:$A$6,0))

in the "ACW" row and drag down to "QA Score";

Code:
=OFFSET(INDEX(Sheet1!B$2:B$6,MATCH($B$1,Sheet1!$A$2:$A$6,0)),,ROWS($B$4:B4))
 
Upvote 0
Hello Try on Sheet 2, cell B3,4,5:

=INDEX(Sheet1!B2:B6,MATCH(B1,Sheet1!A2:A6,0))
=INDEX(Sheet1!C2:C6,MATCH(B1,Sheet1!A2:A6,0))
=INDEX(Sheet1!D2:D6,MATCH(B1,Sheet1!A2:A6,0))
 
Upvote 0
Thank you for all of your help everyone. I ended up using a Vlookup formula. I managed to accomplish what I was setting out to. Thanks again!
 
Upvote 0

Forum statistics

Threads
1,214,784
Messages
6,121,535
Members
449,037
Latest member
tmmotairi

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