Sheets Commands

madmardjealas

New Member
Joined
Jun 12, 2015
Messages
5
Hello from a first timer on this forum. My boss built a report card which is so stiff and complicated I usually have to enter data from 4 or 5 different spreadsheets onto one. I've been introduced to some neat Excel commands, but have yet to figure this one out.

First, I have an excel sheet1 with this data on it:
Course
Mark
Out Of
A Day in the life of a Medic
10.0
EMS & City SOP's
10.0
Patients with a Tracheostomy
10.0
NRP
10.0

<tbody>
</tbody>

Now the students are working on a tablet that generates an excel spreadsheet of marks in this format:

Name
A Day in the life of a Medic
EMS & City SOP's
Patients with a Tracheostomy
NRP
Bob Smith
10
7
9
10

<tbody>
</tbody>

These marks are on sheet 2. I want to get these marks to sheet 1, base on the students name and the course name. Any ideas would be greatly appreciated. Otherwise I have to enter each mark individually, about 8500 data points. yay.:(
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Welcome to the board.

Where does the student's name appear on Sheet1?

Or does each student have their own workbook?
 
Upvote 0
THanks for thereply. So what I have is an excel report card file with a bunch of students on it, one eachper sheet. It looks like this:<o:p></o:p>
Personal Information<o:p></o:p>
Name<o:p></o:p>
0<o:p></o:p>
Email<o:p></o:p>
0<o:p></o:p>
Address<o:p></o:p>
0<o:p></o:p>
Phone<o:p></o:p>
0<o:p></o:p>
Employee #<o:p></o:p>
0<o:p></o:p>
Course<o:p></o:p>
Mark<o:p></o:p>
Out Of<o:p></o:p>
Comments<o:p></o:p>
A Day in the life of a Medic<o:p></o:p>
10.0<o:p></o:p>
EMS & City SOP's<o:p></o:p>
10.0<o:p></o:p>
Patients with a Tracheostomy<o:p></o:p>
10.0<o:p></o:p>
NRP<o:p></o:p>
10.0<o:p></o:p>
<tbody> </tbody>

The Students do their written tests on a tablet that generates another excelspreadsheet that looks like this:<o:p></o:p>

Surname<o:p></o:p>
Quiz: A Day in the life of a Paramedic<o:p></o:p>
Quiz: EMS & City SOP's<o:p></o:p>
Quiz: Patients with a Tracheostomy<o:p></o:p>
Quiz: NRP<o:p></o:p>
Alfonsi<o:p></o:p>
9<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
Brennan<o:p></o:p>
10<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
Burnett<o:p></o:p>
10<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
Cann<o:p></o:p>
10<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
Carkner<o:p></o:p>
10<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
Chung<o:p></o:p>
10<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
Cobus<o:p></o:p>
10<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
Couture<o:p></o:p>
9<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
David<o:p></o:p>
10<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
Delany<o:p></o:p>
10<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
Desson<o:p></o:p>
10<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
Deveros<o:p></o:p>
9<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
Di Paolo<o:p></o:p>
10<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
Drew<o:p></o:p>
10<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
-<o:p></o:p>
<tbody> </tbody>

What I want to do is copy and paste it onto the same excel report card file, say, at the end on the last sheet, which I will name"grades" or something similar. What I would like to have happen isfor the marks to post from the sheet I copy them to, to the individual studentreport cards, which are each on a separate sheet but all on the same excel file.Maybe I am asking too much but I'd like to know if its possible. Thank you.
<o:p></o:p>
 
Upvote 0
Let's assume that:

1. The grades are on a sheet named Grades.
2. The student's name is in C2 on the grade card sheet.
3. The names of the quizzes are the same on each sheet. In your example, the first exam is called A Day in the Life of a Paramedic on one sheet but A Day in the Life of a Medic on another. These will need to match for this formula to work. It is OK that they start with the word Quiz on the grade sheet.

Put this formula in B12 on the grade card sheet and copy down:

=INDEX(Grades!$B$2:$E$15,MATCH($C$2,Grades!$A$2:$A$15,0),MATCH("*"&A12,Grades!$B$1:$E$1,0))

You may need to adjust the ranges for your actual data.
 
Upvote 0
Let's assume that:

1. The grades are on a sheet named Grades.
2. The student's name is in C2 on the grade card sheet.
3. The names of the quizzes are the same on each sheet. In your example, the first exam is called A Day in the Life of a Paramedic on one sheet but A Day in the Life of a Medic on another. These will need to match for this formula to work. It is OK that they start with the word Quiz on the grade sheet.

Put this formula in B12 on the grade card sheet and copy down:

=INDEX(Grades!$B$2:$E$15,MATCH($C$2,Grades!$A$2:$A$15,0),MATCH("*"&A12,Grades!$B$1:$E$1,0))

You may need to adjust the ranges for your actual data.

Thank you for the reply. I will start working on this and get back to you.
 
Upvote 0
Hi again, I wasn't able to make the formula work. I will add a couple of screenshots to better illustrate the problem.

below is a shot of the report card sheet:

tinypic.com
[/URL][/IMG]

This image is the report card generated by the tablet, and is a sheet in the same file named Grades.

tinypic.com
[/URL][/IMG]

All the same conditions apply, at least now you can see the fields. Thanks for your time. Regards, Marc
 
Upvote 0
Try:

=INDEX(Grades!$F$2:$J$15,MATCH($D$2,Grades!$A$2:$A$15,0),MATCH("*"&A12,Grades!$F$1:$J$1,0))
 
Upvote 0
Thanks bbot for the suggestions. I wasn't able to make yours work, so I ended up using this:=TRANSPOSE(Grades!G4:AX4) in the report card. I highlighted the fields next to the tests on Alfonso, did my =transpose(grades!b2:ax2) then shift-ctrl-enter, then copied it to the other cells and it seems to work fine. Your suggestions at least put me on the right path, and I appreciate your help.

Regards,
Marc
 
Upvote 0

Forum statistics

Threads
1,214,523
Messages
6,120,030
Members
448,940
Latest member
mdusw

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