Use the TurboWarp version of this project: https://turbowarp.org/1195572376 Show and Tell forum: https://scratch.mit.edu/discuss/topic/829858 NOTE: This is a BETA version of Scratch Excels. I'm currently improving it, and I want to know your opinions about it. KEYS: Use ARROW KEYS to move the selected cell. Or you may click on the cell to select it. CLICK on a selected cell or CLICK on the cell preview at the bottom to put in a value if you do not have a physical keyboard. FORMULA SYSTEM: Start a formula by entering the '=' symbol. This system supports many things, like: Operators, such as 'x + y', 'x - y', 'x * y', 'x / y', 'x % y' (mod operator), 'x ^ y' (exponentiation), 'x > y', 'x >= y', 'x < y', 'x <= y', 'x = y', 'x <> y' (not equal to), 'x && y' (and), 'x OR y' and 'x .. y' (join two strings). Operators that only include one value, such as '-x', '+x' or '!x' (not). Functions, such as 'SUM', 'PROD' (product), 'AVG', 'COUNT' (those are all the functions. I will add more.) Ranges, such as 'A2' or 'B3:E6'. So, you can do '="TOTAL: " .. 5 * 3 + (7 / PROD(2, 6))', and it works as intended. It can also detect cyclic cells (cells that require each other in order to be calculated), and incorrect formulas. There's also a little mobile support. Overall, it's a PRETTY SIMPLE spreadsheet system I designed in about two weeks.