Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

Ms excel

NEODEL

Apprentice
Advanced Member
Messages
52
Reaction score
0
Points
26
mga SIRS....good day po. paano po ang formula para magawa sa excel po ito? 0-74=B, 75-79=D, 80-84=AP, at 85-100=A..ang mga grades po ay nasa cell A10 po..maraming salamat po.:pray:
 
try lng:


Code:
A10 = GRADES
A11 = RANK NG GRADES

Paste mo na lng sa Standard Module.

Code:
Sub NEODEL


If Range("A10").Value <= 74 Then
Range("A11").Value = "B"

ElseIf Range("A10").Value <= 79 Then
Range("A11").Value = "D"

ElseIf Range("A10").Value <= 84 Then
Range("A11").Value = "AP"

Else
Range("A11").Value = "A"

End If
End Sub
 
Last edited:
ahhaha teacher ka din po like me.. that is the new grading system in the k12 program. heheh.. ginawa ko po jan gumawa ako ng table from 65 - 74 ang value is A, thenn 75 - 79 value is B and so on. ginamitan ko sia ng VLOOKUP pero dapat ung final grade mo ay naka WHOLE number or else hindi po siya macoconvert into descriptive value mo.

hope it help po
 
Gamit ka lang po if else sa formula.
Check mo ung attachment.
 

Attachments

  • grade.rar
    5.9 KB · Views: 76
Last edited:
tama TS. vlookup lang katapat nyan.. mas madali pa..
 
pwede rin "if else" function,
pwede din sa codes ni VBA :f1:
 
MARAMING SALAMAT PO SA LAHAT NG NAG REPLY..sencya na po..now lang me nag reply..now lang po kasi nag ka kuryente dito sa amin buhat ng bagyong Glenda..kaya now lang me naka pag bukas ng internet..MARAMING SALAMAT PO especially kay ACELLEB ok po attachment nyo...sir samantalahin ko na po kabaitan nyo..pa tulong po ulit...gusto ko po lahat ng below 65 na grades ay 65 na ang grade at 65> ay the same ang grade... ano po ang formula sa excel? salamat po ulit at mabuhay po kayo..
 
MARAMING SALAMAT PO SA LAHAT NG NAG REPLY..sencya na po..now lang me nag reply..now lang po kasi nag ka kuryente dito sa amin buhat ng bagyong Glenda..kaya now lang me naka pag bukas ng internet..MARAMING SALAMAT PO especially kay ACELLEB ok po attachment nyo...sir samantalahin ko na po kabaitan nyo..pa tulong po ulit...gusto ko po lahat ng below 65 na grades ay 65 na ang grade at 65> ay the same ang grade... ano po ang formula sa excel? salamat po ulit at mabuhay po kayo..

Change mo lang ung formula into =IF($A2<=65,65,$A2)
*Ung grade nasa Column A pa din
 
nasolve ko yan using this formula:

=if((((A10>=90,"A",IF(A10>=85,"P",IF(A10>=80,"AP",IF(A10>=75,"D",IF(A10>=50,"B"," "))))

TRY MO NALANG, YOU CAN CHANGE THE LAST ARGUMENT ACCORDING TO YOUR PREFERENCE. IT WILL WORK.
IM ALSO A TEACHER.
 
nasolve ko yan using this formula:

=if((((A10>=90,"A",IF(A10>=85,"P",IF(A10>=80,"AP",IF(A10>=75,"D",IF(A10>=50,"B"," "))))

TRY MO NALANG, YOU CAN CHANGE THE LAST ARGUMENT ACCORDING TO YOUR PREFERENCE. IT WILL WORK.
IM ALSO A TEACHER.

my mali lng ng konti tong formula nya. eto ung corection ko

=IF(A10>=85,"A",IF(A10>=80,"AP", IF(A10>=75,"D",IF(A10>=50,"B"," "))))
 
Tama po yung formula ko... here's why.
Based from Kto12 Curriculum;
90-100 = A
85-89 = P
80-84 = AP
75-79 = D
74 below = B

ne-revise ko pala yung formula because of rounding off. maybe this would help.
=if((((A10>=89.5,"A",IF(A10>=84.5,"P",IF(A10>=79.5,"AP", IF(A10>=74.5,"D",IF(A10>=50,"B"," "))))
 
pa help nmn ako mga sir.
Paano ba pagsamahin at formulla ng for example ang A1+C1, A2+B2, A3+G3 so fort & so on?
 
Back
Top Bottom