Spreadsheet cell E13 contains the text string “Database”. To return the substring “Data”, what is the correct syntax?

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