School Spreadsheet

asherlevin

New Member
Joined
Oct 7, 2017
Messages
9
Here is Sheet 1.
sheet1.png


This is a student grade book. If a student has an x under a topic, that means they have achieved that goal.
Test has therefore achieved 'Recognise the use of binary numbers...' etc.

Here is sheet 2.

sheet2.png


When a student types their name: 'Test' in this example -> I want the next cell goal which doesn't have an X next to it, to appear on this sheet where it says 'Next Goal'.

So the next goal, on sheet 1' is: use binary in computer registers...etc.. When I type in X on sheet 1, it will then jump to the next goal for Test.
 
Re: Help Needed for a School Spreadsheet

You have a sheet with all students names
That list contains columns with all courses they can take
Starting from left to right, they complete classes sequentially
As they complete a course, it gets x'd off
On another sheet, you want the student to be able to type in their name, and it shows what their next course is

If that is what you want, then my 1st suggestion will do that for you. You just need to empty Column A on my Extract sheet, only use 1 row for the formula, and that is where the student will enter their name - it will then show them what their next course is
 
Upvote 0

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Re: Help Needed for a School Spreadsheet

You have a sheet with all students names
That list contains columns with all courses they can take
Starting from left to right, they complete classes sequentially
As they complete a course, it gets x'd off
On another sheet, you want the student to be able to type in their name, and it shows what their next course is

If that is what you want, then my 1st suggestion will do that for you. You just need to empty Column A on my Extract sheet, only use 1 row for the formula, and that is where the student will enter their name - it will then show them what their next course is

Many thanks. I am using Google Sheets. Unfortunately by preempting the index with a column reference (B), it turns it from a formula into simply text.
 
Upvote 0
Re: Help Needed for a School Spreadsheet

Many thanks. I am using Google Sheets. Unfortunately by preempting the index with a column reference (B), it turns it from a formula into simply text.

So close! How do I get it to do it for the specific student name though. Any ideas?

teststudent.png
 
Upvote 0
Re: Help Needed for a School Spreadsheet

OK sorry, I cant help you with that, I don't use Sheets, but I know there it has an equivalent for INDEX
 
Upvote 0
Re: Help Needed for a School Spreadsheet

So close! How do I get it to do it for the specific student name though. Any ideas?

teststudent.png

You could add another MATCH to find the student name, but then the COUNTIF wont work. Let me take another look for you
 
Upvote 0
Re: Help Needed for a School Spreadsheet

OK this works in Excl, you will just have to try and see if it works in Sheets.

Using the same data sample...
[Table="width:, class:grid"][tr][td] [/td][td]
A​
[/td][td]
B​
[/td][td]
C​
[/td][td]
D​
[/td][td]
E​
[/td][td]
F​
[/td][td]
G​
[/td][td]
H​
[/td][/tr]
[tr][td]
1​
[/td][td]data sheet[/td][td][/td][td][/td][td][/td][td][/td][td][/td][td][/td][td][/td][/tr]

[tr][td]
2​
[/td][td]Name[/td][td]xx[/td][td]zz[/td][td]Class1[/td][td]Class2[/td][td]Class3[/td][td]Class4[/td][td]Class5[/td][/tr]

[tr][td]
3​
[/td][td]aa[/td][td][/td][td][/td][td]x[/td][td]x[/td][td]x[/td][td][/td][td][/td][/tr]

[tr][td]
4​
[/td][td]bb[/td][td][/td][td][/td][td]x[/td][td]x[/td][td][/td][td][/td][td][/td][/tr]

[tr][td]
5​
[/td][td]cc[/td][td][/td][td][/td][td]x[/td][td]x[/td][td]x[/td][td]x[/td][td][/td][/tr]
[/table]


[Table="width:, class:grid"][tr][td] [/td][td]
A​
[/td][td]
B​
[/td][/tr]
[tr][td]
1​
[/td][td]extract sheet[/td][td][/td][/tr]

[tr][td]
2​
[/td][td]aa[/td][td]Class4[/td][/tr]

[tr][td]
3​
[/td][td]bb[/td][td]Class3[/td][/tr]

[tr][td]
4​
[/td][td]cc[/td][td]Class5[/td][/tr]
[/table]

B2=INDEX(Sheet2!$D$2:$H$2,COUNTA(INDEX(Sheet2!$D$3:$H$5,MATCH(A2,Sheet2!$A$3:$A$5,0),0))+1)
Or
=I(A2="","",INDEX(Sheet2!$D$2:$H$2,COUNTA(INDEX(Sheet2!$D$3:$H$5,MATCH(A2,Sheet2!$A$3:$A$5,0),0))+1))
 
Upvote 0
Re: Help Needed for a School Spreadsheet

As I mentioned, I don't use Sheets (and cannot even access it from here (work), Perhaps find a forum that is specific to Sheets and see if they can "translate" my suggestion? Im not even sure if that technique will carry over
 
Upvote 0

Forum statistics

Threads
1,223,227
Messages
6,170,849
Members
452,361
Latest member
d3ad3y3

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