Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Data Analysis Spreadsheet Basics Spreadsheet Functions & Shortcuts Review More Spreadsheet Functions

Spreadsheets and Functions and Shortcuts Quiz 2?

Your boss asks you to tell her how many employees she needs to have on duty during an event. She needs at least 1 employee per every 15 guests. There are expected to be 3,030 guests. Write the spreadsheet equation using a function that will allow you to tell your boss the minimum number of employees needed.

3 Answers

Steven Parker
Steven Parker
229,608 Points

Did you have a specific question? Here's some hints in the meantime:

  • divide to get the employees
  • use a function to make sure you return a whole number
  • this is very similar to the teachers equation in the video
John Grillo
John Grillo
30,241 Points

ROUNDUP(3030/15 , 0) Don't forget to include the number of decimal places you want, which is decided after the

Probably a bug in the answer checking code, in reality, even if you leave out the "0", you get the right answer because the parameter is optional. Also ROUNDUP(3030/15, 0) should have worked, but the answer it needs is:

ROUNDUP(3030/15,0)