The problem is based on a spreadsheet showing the sales of various food items in a school cafeteria. There are four questions, each requiring the selection of the correct formula to be entered in a specific cell of the spreadsheet. I. Find the formula to calculate the sales amount (H3) using the selling price and the number of items sold. II. Find the formula to determine the price evaluation (F3) by comparing the cost price and selling price. If the selling price is 200 yen or more higher than the cost price, display "O", otherwise display "x". III. Find the formula to determine the profit evaluation (J3). If the profit is 50,000 yen or more, display "A". If it is 20,000 yen or more, display "B". Otherwise, display "C". IV. Find the formula to calculate the sales ranking (K3) based on the profit.

Applied MathematicsSpreadsheet FormulasIF StatementsRANK.EQ FunctionSales Analysis
2025/7/3

1. Problem Description

The problem is based on a spreadsheet showing the sales of various food items in a school cafeteria. There are four questions, each requiring the selection of the correct formula to be entered in a specific cell of the spreadsheet.
I. Find the formula to calculate the sales amount (H3) using the selling price and the number of items sold.
II. Find the formula to determine the price evaluation (F3) by comparing the cost price and selling price. If the selling price is 200 yen or more higher than the cost price, display "O", otherwise display "x".
III. Find the formula to determine the profit evaluation (J3). If the profit is 50,000 yen or more, display "A". If it is 20,000 yen or more, display "B". Otherwise, display "C".
IV. Find the formula to calculate the sales ranking (K3) based on the profit.

2. Solution Steps

I. Calculation of Sales Amount (H3)
The sales amount is calculated by multiplying the selling price (E3) and the number of items sold (G3).
The correct formula is:
H3=E3G3H3 = E3 * G3
Therefore, the answer is ウ.
II. Price Evaluation (F3)
The price evaluation is determined by comparing the selling price (E3) and the cost price (B3). If the difference between the selling price and the cost price is 200 yen or more, it should display "O". Otherwise, it should display "x". The formula should be:
IF(E3B3>=200,"O","x")IF (E3 - B3 >= 200, "O", "x")
Therefore, the answer is ア.
III. Profit Evaluation (J3)
The profit evaluation is based on the profit amount (I3). The evaluation criteria are:
- If I3 >= 50000, display "A"
- If I3 >= 20000, display "B"
- Otherwise, display "C"
This can be expressed using nested IF statements.
The correct formula is:
IF(I3>=50000,"A",IF(I3>=20000,"B","C"))IF(I3>=50000, "A", IF(I3>=20000, "B", "C"))
Therefore, the answer is イ.
IV. Sales Ranking (K3)
The sales ranking is determined using the RANK.EQ function. The ranking is based on the profit amount (I3) compared to the range of profit amounts (I3:I12). To ensure the range remains constant when the formula is copied using autofill, absolute references ($) should be used for the range.
The correct formula is:
RANK.EQ(I3,IRANK.EQ(I3, I3:I12,0)12, 0)
Therefore, the answer is ウ.

3. Final Answer

I. ウ
II. ア
III. イ
IV. ウ

Related problems in "Applied Mathematics"

The problem involves using an exponential function to calculate the accrued value of an investment. ...

Exponential FunctionsCompound InterestFinancial MathematicsLogarithms
2025/7/3

The problem describes an investment made by Jolene, with a principal of $9250, an interest rate of 6...

Compound InterestExponential GrowthFinancial MathematicsLogarithms
2025/7/3

The problem describes a population of spotted woodpeckers that starts at 51 and quadruples every 19 ...

Exponential GrowthModelingLogarithms
2025/7/3

The problem describes two functions, $H = C(m)$ and $m = a(s)$. $H = C(m)$ gives the speed of a car ...

Function CompositionUnits ConversionModeling
2025/7/3

Laila rides a bicycle. After 9 hours, she is 20 miles from her house. After 12 hours, she is 26 mile...

RateDistanceTimeAverage Rate
2025/7/3

We are given three vectors: $s = -i + 2j$, $t = 3i - j$, and $r = 2i + 5j$. We are asked to find the...

VectorsVector AdditionVector SubtractionScalar Multiplication
2025/7/2

The problem asks to find the current through the resistor $R_2$ (which has a resistance of 6 $\Omega...

Circuit AnalysisSuperposition TheoremResistorsCurrent Divider RuleOhm's Law
2025/7/2

A family has installed a wind turbine. The problem provides the rated power output, product life, an...

Energy CalculationCost AnalysisFinancial ModelingUnits Conversion
2025/7/2

The problem describes a radially slotted arm whose rotation is governed by $\theta = 0.2t + 0.02t^2$...

KinematicsPolar CoordinatesDerivativesVelocityAccelerationEngineering Mechanics
2025/7/1

The problem describes a Cournot duopoly with two firms, Boors and Cudweiser, selling identical nonal...

MicroeconomicsDuopolyCournot ModelOptimizationMarket Equilibrium
2025/7/1