+ Reply to Thread
Results 1 to 6 of 6

simple user-friendly spreadsheet for some 1st-grade teachers

  1. #1
    Registered User
    Join Date
    08-29-2016
    Location
    Nevada City, California
    MS-Off Ver
    MS Office 2010
    Posts
    1

    Question simple user-friendly spreadsheet for some 1st-grade teachers

    Hi Everyone,

    Okay, I'm trying to create a simple user-friendly spreadsheet for some 1st-grade teachers. All they have to do is enter in the raw scores and the rest will be done for them. Usually, I don't have a problem. but I'm stumbling a bit on this one.

    I'm using this as the formula. =COUNTIFS(B7:B32,"1", G7:G32, "'>=19")
    It works unless there is a blank cell then I get the #Div/0 error. Which would be fine but I have to compile the data from 5 separate sheets onto one master with all the results.

    I then use the result from that formula and divide by 24 points possible to get the average.

    This is what is needed. Students who meet certain criteria and then those scores would be average out. I have a class of 24 students, 3 meet the criteria. I need to know how many passed with a 19 or more and the average 3 test scores. If no students met the criteria then it can remain blank without the #div/0.

    Need - Number of students who meet criteria, Thier Average, and % passing 19/24

    Hoping someone can help me.

    Thank you for all that you do!

  2. #2
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,659

    Re: simple user-friendly spreadsheet for some 1st-grade teachers

    To get rid of the #DIV/0 message, try this:

    =IFERROR(COUNTIFS(B7:B32,"1", G7:G32, ">=19"),"")

    or

    =IF(ISERROR(COUNTIFS(B7:B32,"1", G7:G32, ">=19"),"",COUNTIFS(B7:B32,"1", G7:G32, ">=19"))

    If you are wanting any more help with the spreadsheet, then you will need to attach it here.

    Make sure there is just enough data to demonstrate your need. Include a BEFORE sheet and an AFTER sheet in the workbook if needed to show the process you're trying to complete or automate. Make sure your desired results are shown, mock them up manually if necessary.

    Remember to desensitize the data.

    Click on GO ADVANCED and then scroll down to Manage Attachments to open the upload window.
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

  3. #3
    Forum Expert
    Join Date
    06-08-2012
    Location
    Left the forum!
    MS-Off Ver
    Left the forum!
    Posts
    5,189

    Re: simple user-friendly spreadsheet for some 1st-grade teachers

    Quote Originally Posted by redskyluv View Post
    I'm using this as the formula. =COUNTIFS(B7:B32,"1", G7:G32, "'>=19")
    It works unless there is a blank cell then I get the #Div/0 error.
    That formula alone will not ever return a #DIV/0 error, even if the errors exist in the data columns.

    If you do have that error, then something else is causing it.

  4. #4
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,659

    Re: simple user-friendly spreadsheet for some 1st-grade teachers

    It could be the formula itself:

    =COUNTIFS(B7:B32,"1", G7:G32, "'>=19")

    It should be this:

    =COUNTIFS(B7:B32,"1", G7:G32, ">=19")

  5. #5
    Forum Expert
    Join Date
    06-08-2012
    Location
    Left the forum!
    MS-Off Ver
    Left the forum!
    Posts
    5,189

    Re: simple user-friendly spreadsheet for some 1st-grade teachers

    Good catch, Ali, but that would just be evaluated as a text string that is trying to count cells that contain ''>=19 (note 2 single inverted commas, not 1 double!)

    To be more specific, you have to do some kind of division by zero to get a #DIV/0 error, there is no division of any kind in the formula.

    COUNTIFS will also ignore any #DIV/0 errors in the data being counted, so it is not coming from there.

  6. #6
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,659

    Re: simple user-friendly spreadsheet for some 1st-grade teachers

    True enough, Jason. Hopefully we'll get to see the workbook.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. user friendly box
    By K-Ching in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 01-27-2014, 07:34 AM
  2. [SOLVED] User-friendly editing
    By menim in forum Excel General
    Replies: 5
    Last Post: 01-01-2014, 06:53 PM
  3. Making a spreadsheet user friendly
    By quiggdavid in forum Excel General
    Replies: 10
    Last Post: 03-30-2011, 07:18 PM
  4. User friendly summarising
    By murphybrendan in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 08-12-2010, 06:54 AM
  5. More cosmetically pleasing & user friendly
    By warby23 in forum Excel General
    Replies: 1
    Last Post: 02-09-2009, 04:54 PM
  6. Replies: 1
    Last Post: 06-25-2006, 01:50 PM
  7. [SOLVED] Creating User Friendly Templates
    By shelmo in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 06-12-2006, 07:30 AM
  8. making a worksheet user friendly
    By lsu-i-like in forum Excel General
    Replies: 0
    Last Post: 05-06-2005, 01:29 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1