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 case-insensitive, so "apple" works.
Fix the error in the formula to find "book" in cell C3 using FIND.
=FIND([1], C3)The text to find must be in quotes. Without quotes, Excel gives an error.
Fill both blanks to find the position of "pen" in cell D4 starting from character 3 using SEARCH.
=SEARCH([1], D4, [2])
SEARCH("pen", D4, 3) starts searching from the 3rd character in D4 for "pen".
Fill all three blanks to create a formula that finds "tree" in cell E5 ignoring case, starting from character 2.
=SEARCH([1], [2], [3])
SEARCH("tree", E5, 2) finds "tree" ignoring case, starting from character 2 in cell E5.