Complete the formula to get the absolute value of cell A1.
= [1](A1)The ABS function returns the absolute value of a number, removing any negative sign.
Complete the formula to find the remainder when cell B1 is divided by 3.
= [1](B1, 3)
The MOD function returns the remainder after division of one number by another.
Fix the error in the formula to correctly calculate the absolute value of cell C1.
= [1](C1)ABS is the correct function to get absolute value, not MOD or others.
Fill both blanks to create a formula that returns the absolute value of the remainder when D1 is divided by 4.
= [1]([2](D1, 4))
First, MOD(D1, 4) finds the remainder. Then ABS(...) makes sure the result is positive.
Fill all three blanks to create a formula that calculates the absolute value of the remainder when the sum of E1 and E2 is divided by 5.
= [1]([2](E1 [3] E2, 5))
First, add E1 and E2 with '+'. Then MOD(..., 5) finds remainder. Finally, ABS(...) makes it positive.