Posted 18 April 2022, 3:11 am EST
Hi teams,
On my web application, i have a cell without any format.
I’m facing an issue: I enter 111111111111111 but SpreadJS display 1.11111E+14
I have researched and find a solution that using format “Text” (Text format cells are treated as text even when a number is in the cell. The cell is displayed exactly as entered.)
I have implemented this solution:
sheet.getRange(-1, 0, -1, 1).formatter("text");
This is output:
-
“Enter: 1 => Output: A1899xA => Not good”
-
“Enter: 11111111 => Output: A32321xA => Not good”
-
“Enter: 111111111111111 => Output: 111111111111111 => OK”
Please help me.

