Hello,
I am trying to create a basic grading scale of
90-100 %= A
80-89 %= B
etc
right now my code is
If (
Value(TextInput2.Text) = Blank(), Blank(),
Value(TextInput2.Text) >= 0.9 , "A" ,
Value(TextInput2.Text) <= 0.89 Or Value(TextInput2.Text) >= 0.80 , "B",
Value(TextInput2.Text) <=0.79 Or Value(TextInput2.Text) >= 0.70 , "C",
Value(TextInput2.Text) <=0.69 Or Value(TextInput2.Text) >= 0.60 , "D",
Value(TextInput2.Text) <= 0.59 , "F"
)
But this is invalid and my calculation is stuck on B even when its lower than 0.80, looking for some tips for adjustments.
thanks