Cell value and formula remove function added.
parent
79b6a0316b
commit
8096c13555
|
@ -1,10 +1,10 @@
|
|||
,,=SUMME(A1.B10),,,,,,,
|
||||
=4322,,=SUMME(A1.B10),,,,,,,
|
||||
,,=PRODUKT(A1.B10),,,,,,,
|
||||
,,=MITTELWERT(A1.B10),,,,,,,
|
||||
=15,,=MITTELWERT(A1.B10),,,,,,,
|
||||
,,=STABW(A1.B10),,,,,,,
|
||||
,,=MIN(A1.B10),,,,,,,
|
||||
,=SUMME(A1.A3),=MIN(A1.B10),,,,,,,
|
||||
,,=MAX(A1.B10),,,,,,,
|
||||
,,,,,,,,,
|
||||
,,,,,,,,,
|
||||
,,,,,,,,,
|
||||
,,,,,,,,,
|
||||
,=32,,,,,,,,
|
||||
|
|
|
|
@ -53,6 +53,7 @@ public class Axel {
|
|||
System.out.println("\nSpeichern: \nKOMMANDO Dateipfad (Mit Leerzeichen getrennt.) e.g.:\nSPEICHERN Axel/resources/zahlen.csv");
|
||||
System.out.println("\nFormel Tabellenansicht: \nKOMMANDO e.g.:\nFORMELN");
|
||||
System.out.println("\nZellen Werte/Formeln zuweisen: \nZELLE ZUWEISUNG (Mit Leerzeichen getrennt, Zelle beginnend mit Buchstabe und Zuweisung beginnend mit =; Keine Kommazahlen als Eingabe erlaubt.) e.g.:\nA1 =A5+15\n" +
|
||||
"\nZellen Werte/Formeln löschen: \nZELLE ZUWEISUNG (Mit Leerzeichen getrennt, Zelle beginnend mit Buchstabe und Zuweisung nur =) e.g.:\nA1 =\n" +
|
||||
"\nZELLE FORMELZUWEISUNG (Formelzuweisung mit Startzelle bis Endzelle getrennt durch :.) e.g.:" +
|
||||
"\nA2 =SUMME(A1:H10)\t\tA3 =PRODUKT(A1:H10)\t\tA4 =MITTELWERT(A1:H10)\t\tA5 =STABW(A1:H10) (Standartabweichung)\t\tA6 =MIN(A1:H10)\t\tA7 =MAX(A1:H10)");
|
||||
}
|
||||
|
|
|
@ -239,12 +239,16 @@ public class Spreadsheet {
|
|||
}
|
||||
}
|
||||
|
||||
else {
|
||||
cells[row][col].setValue("");
|
||||
}
|
||||
|
||||
if(!cells[row][col].getFormula().isEmpty())
|
||||
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')
|
||||
cells[row][col].setValue(String.format("%.0f",result));
|
||||
|
||||
else if(String.format("%.2f",result).substring(String.format("%.2f",result).length()-2).charAt(1)=='0')
|
||||
else if(String.format("%.2f",result).substring(String.format("%.2f",result).length()-2).charAt(1)=='0')
|
||||
cells[row][col].setValue(String.format("%.1f",result));
|
||||
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue