Comment added.
parent
8096c13555
commit
098299b45e
|
@ -4,7 +4,7 @@
|
||||||
,,=STABW(A1.B10),,,,,,,
|
,,=STABW(A1.B10),,,,,,,
|
||||||
,=SUMME(A1.A3),=MIN(A1.B10),,,,,,,
|
,=SUMME(A1.A3),=MIN(A1.B10),,,,,,,
|
||||||
,,=MAX(A1.B10),,,,,,,
|
,,=MAX(A1.B10),,,,,,,
|
||||||
,,,,,,,,,
|
=15+2,,,,,,,,,
|
||||||
,,,,,,,,,
|
=A1+4,,=MITTELWERT(A1.A10),,,,,,,
|
||||||
,,,,,,,,,
|
,,,,,,,,,
|
||||||
,=32,,,,,,,,
|
,=32,,,,,,,,
|
||||||
|
|
|
|
@ -243,6 +243,8 @@ public class Spreadsheet {
|
||||||
cells[row][col].setValue("");
|
cells[row][col].setValue("");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//If comma number available show max 2 digits after decimal point
|
||||||
|
|
||||||
if(!cells[row][col].getFormula().isEmpty())
|
if(!cells[row][col].getFormula().isEmpty())
|
||||||
if(String.format("%.2f",result).substring(String.format("%.2f",result).length()-2).charAt(0)=='0'&&
|
if(String.format("%.2f",result).substring(String.format("%.2f",result).length()-2).charAt(0)=='0'&&
|
||||||
String.format("%.2f",result).substring(String.format("%.2f",result).length()-2).charAt(1)=='0')
|
String.format("%.2f",result).substring(String.format("%.2f",result).length()-2).charAt(1)=='0')
|
||||||
|
|
Loading…
Reference in New Issue