Answered step by step
Verified Expert Solution
Question
1 Approved Answer
for the equation, I have =IF(MOD($A43),CLOSED,IF(OR(AND(MOD($A4,5),ISEVEN($A4))),CLOSED,OPEN)) but i do not think that is right Part 4- AND() & OR) Exercises Exercise 1- Locker Control Panel
for the equation, I have =IF(MOD($A43),"CLOSED",IF(OR(AND(MOD($A4,5),ISEVEN($A4))),"CLOSED","OPEN")) but i do not think that is right
Part 4- AND() & OR) Exercises Exercise 1- Locker Control Panel Algorithm The School of Fine Arts has 100 lockers numbered 1-100 and their status is displayed on a simulated control console in Excel. At present, all the lockers are open (signified by both the word OPEN and the green color). .We begin by closing every locker whose number evenly divides by 3 .We then close every locker whose number is both divisible by 5 and even while making sure that lockers whose number is divisible by 3 remain closed. How many lockers are closed and how many are open at the end? Directions In the cell next to the locker number where it says OPEN create an IF) formula that does the following tests: Is the locker # divisible by 3? If yes, set cell to "CLOSED" (e.g., the corresponding cell where it says "OPEN" should now say "CLOSED") 1. 2. If no, is the locker divisible by 5 and even? If yes, set cell to "CLOSED" 3. Otherwise set to "OPEN" To create this formula you'll need to make use of the following EXCEL functions in addition to IF: 4. OR) 5. AND) 6. ISEVENO) 7. MOD) a. MOD takes two arguments: a Number(in this case the locker number) and a Divisor (in this case the number you want to divide by-3 or 5) and returns the remainder of the division. For example, if the locker number is 1, and the divisor is 3, the function MOD(1,3) returns a 1. When a number is evenly divisible by another number, MOD() will return a 0Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started