10-19-2005, 06:57 AM | #1 (permalink) |
Rookie
|
Excel Set up for a Transcript
I'm working out my midterm grades right now and want to set up an excel spread sheet that I'll be able to put in my grades and it'll factor everything for me. Right now this is what I have:
What I'm wanting to do is be able to change the A, B, C, and D (well, A, B, and C) on there so that when I change it, it makes Pts equal to A*(A-Hrs)=pts And A=4, B=3, C=2, and D=1. So essentially in a 3 hour class that I have a B in it'll do the math for me and under Pts it'll show up at 9.0 for me without having to do the math. That way I'll have an automated way to do my midtrm grades and always have an up to date system with minimal work. I think my wording is slightly confusing, so if you have questions please ask. Thanks in advance
__________________
I got in a fight one time with a really big guy, and he said, "I'm going to mop the floor with your face." I said, "You'll be sorry." He said, "Oh, yeah? Why?" I said, "Well, you won't be able to get into the corners very well." Emo Philips |
10-19-2005, 07:17 AM | #2 (permalink) |
Devoted
Donor
Location: New England
|
Easist thing to do would be to add a hidden column with a big IF statement.
=if(c5="A",4,if(c5="B",3,if(c5="C",2,if(c5="D",1,"error")))) I don't know if I closed those parentheses properly, and I don't particularly care . There's more elegant methods, but this would be the quick'n'dirty method.
__________________
I can't read your signature. Sorry. |
10-19-2005, 07:27 AM | #3 (permalink) |
Professional Loafer
Location: texas
|
Why don't you just go to Microsoft's office site and download a template for grade tracking?
This is the direct link. You will probably find what you need here. http://office.microsoft.com/en-us/te...377131033.aspx
__________________
"You hear the one about the fella who died, went to the pearly gates? St. Peter let him in. Sees a guy in a suit making a closing argument. Says, "Who's that?" St. Peter says, "Oh, that's God. Thinks he's Denny Crane." |
10-19-2005, 07:53 AM | #4 (permalink) |
Adequate
Location: In my angry-dome.
|
Bendsley's right, tons of ready made solutions.
Then again if you want to do it... Redlemon's works fine in the pts field with a couple changes. Or something like... =(5-(CODE(UPPER(grade_cell))-64))*hours_cell Edit: You didn't see that.
__________________
There are a vast number of people who are uninformed and heavily propagandized, but fundamentally decent. The propaganda that inundates them is effective when unchallenged, but much of it goes only skin deep. If they can be brought to raise questions and apply their decent instincts and basic intelligence, many people quickly escape the confines of the doctrinal system and are willing to do something to help others who are really suffering and oppressed." -Manufacturing Consent: Noam Chomsky and the Media, p. 195 Last edited by cyrnel; 10-19-2005 at 07:59 AM.. |
10-19-2005, 09:32 AM | #5 (permalink) | |
Rookie
|
Quote:
Plus "=if(E3="A",4,if(E3="B",3,if(E3="C",2,if(E3="D",1,"error"))))*G3" worked. Thanks a lot.
__________________
I got in a fight one time with a really big guy, and he said, "I'm going to mop the floor with your face." I said, "You'll be sorry." He said, "Oh, yeah? Why?" I said, "Well, you won't be able to get into the corners very well." Emo Philips Last edited by Gatorade Frost; 10-19-2005 at 09:40 AM.. |
|
10-19-2005, 02:48 PM | #6 (permalink) |
Adequate
Location: In my angry-dome.
|
Elegance is dead.
__________________
There are a vast number of people who are uninformed and heavily propagandized, but fundamentally decent. The propaganda that inundates them is effective when unchallenged, but much of it goes only skin deep. If they can be brought to raise questions and apply their decent instincts and basic intelligence, many people quickly escape the confines of the doctrinal system and are willing to do something to help others who are really suffering and oppressed." -Manufacturing Consent: Noam Chomsky and the Media, p. 195 |
10-20-2005, 06:36 AM | #7 (permalink) | |
Devoted
Donor
Location: New England
|
Quote:
__________________
I can't read your signature. Sorry. |
|
10-20-2005, 02:19 PM | #8 (permalink) |
Crazy
|
I do a similar, but more complex setup for my student's grades.
The command that is your friend is VLOOKUP(). The function will go to a 2-column table, lookup the value in the first column, and return the value in the second column. So if you make a table: |letter | value --------------- A | 4 B | 3 and so on, it will work. Granted, for only 4 values the if statement is probably faster/easier. But when you're dealing with more complex grade setups (A, A+, A-, B+, etc down to F) the lookup table is a life-saver. |
10-20-2005, 02:29 PM | #9 (permalink) | |
Adequate
Location: In my angry-dome.
|
Quote:
I had to whine. You ignored my CODE version.
__________________
There are a vast number of people who are uninformed and heavily propagandized, but fundamentally decent. The propaganda that inundates them is effective when unchallenged, but much of it goes only skin deep. If they can be brought to raise questions and apply their decent instincts and basic intelligence, many people quickly escape the confines of the doctrinal system and are willing to do something to help others who are really suffering and oppressed." -Manufacturing Consent: Noam Chomsky and the Media, p. 195 |
|
10-21-2005, 08:10 AM | #10 (permalink) | |
Rookie
|
Quote:
__________________
I got in a fight one time with a really big guy, and he said, "I'm going to mop the floor with your face." I said, "You'll be sorry." He said, "Oh, yeah? Why?" I said, "Well, you won't be able to get into the corners very well." Emo Philips |
|
Tags |
excel, set, transcript |
|
|