Spreadsheet cell L6 contains the text string “Function”. To return the substring “Fun”, what is the correct syntax?

Correct
The function =LEFT(L6, 3) will return “Fun”. The LEFT function returns a set number of characters from the left side of a text string. In this case, it returns a three-character substring from the end of the string in L6, starting from the left.