Excel Formula Question

Anonymous
2023-09-27T15:12:46+00:00

I am trying to categorize data in an excel sheet. I have test scores and I need to build an IF formula with the following criteria: IF the score is below 60 label it as "Below Basic", IF the score is below 80 label it as "Proficient", IF the score is below 101 label it as "Advanced". I put the formula in as: =IF(B1<60,”Below Basic”,IF(B1<80,”Proficient”,IF(B1>101,”Advanced”))) but it does not work. Can someone help / build me a formula? Thank you

Microsoft 365 and Office | Excel | For business | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments
{count} votes

3 answers

Sort by: Most helpful
  1. Anonymous
    2023-09-27T15:16:35+00:00

    =IF(B1<60,"Below Basic",IF(B1<80,"Proficient",IF(B1<101,"Advanced")))

    0 comments No comments
  2. Rich~M 20,350 Reputation points Volunteer Moderator
    2023-09-27T15:21:23+00:00

    H cProctorm. I am an Excel user like you.

    Here is another formula that you can use that doesn't have to stack the IF formulas.

    =IFS(A1<60,"Below Basic",A1<80,"Proficient",A1<101,"Advanced")

    .

    .

    0 comments No comments
  3. Ashish Mathur 100.8K Reputation points Volunteer Moderator
    2023-09-27T23:29:33+00:00

    Hi,

    Your rules are incomplete. What result do you want if the score is 88 i.e. between 80 and 101?

    0 comments No comments