Response:
Input the following into D5:
=ROUNDUP((SUM(B5,B5)*C5),0)
Explanation:
Needed
First, sum B5 with B5, and then multiply that total by C5.
Store the rounded-up figure to 0 decimal points in D5
The calculation needed is illustrated as:
D5 = (B5 + B5) * C5 [Rounded to 0 decimal points]
In Excel, the equation used is:
=ROUNDUP((SUM(B5,B5)*C5),0)
Breaking down the formula above:
= ---> This signifies the start of every excel formula
ROUNDUP( -> Rounds the outcome upward
(SUM(B5,B5) ---> Combine B5 and B5
*C5) --> Multiply the result of that addition by C5
,0) ---> The result is rounded up to 0 decimal points
To replicate the formula from D6 to D9, simply drag down the formula from D5 to D9.
The resulting formulas will be:
=ROUNDUP((SUM(B6,B6)*C6),0)
=ROUNDUP((SUM(B7,B7)*C7),0)
=ROUNDUP((SUM(B8,B8)*C8),0)
=ROUNDUP((SUM(B9,B9)*C9),0)