Complete the formula to find the position of "cat" in cell A1 using FIND.
=FIND([1], A1)The FIND function needs the text to find as a string in quotes. So "cat" is correct.
Complete the formula to find the position of "apple" in cell B2 using SEARCH (case-insensitive).
=SEARCH([1], B2)SEARCH needs the text to find as a string in quotes. It is not case-sensitive, so "apple" works.
Fix the error in the formula to find "dog" in cell C3 using FIND.
=FIND([1], C3)The text to find must be a string in quotes. "dog" is correct. Without quotes, it causes an error.
Fill both blanks to create a formula that finds "book" in cell D4 starting from position 3 using SEARCH.
=SEARCH([1], D4, [2])
SEARCH needs the text in quotes and the starting position as a number. "book" and 3 are correct.
Fill all three blanks to create a formula that finds the position of "pen" in cell E5 starting from position 1 using FIND.
=FIND([1], [2], [3])
FIND needs the text in quotes, the cell reference, and the starting position number. "pen", E5, and 1 are correct.