Convertire testo in numeri
Defaults settings in Calc converts text inside cells to the respective numeric values if an unambiguous conversion is possible. If no conversion is possible, Calc returns a #VALUE! error.
Only integer numbers including exponent are converted, and ISO 8601 dates and times in their extended formats with separators. Anything else, like fractional numbers with decimal separators or dates other than ISO 8601, is not converted, as the text string would be locale dependent. Leading and trailing blanks are ignored.
Sono convertiti i seguenti formati ISO 8601:
-
AAAA-MM-GG
-
AAAA-MM-GGThh:mm
-
AAAA-MM-GGThh:mm:ss
-
AAAA-MM-GGThh:mm:ss,s
-
AAAA-MM-GGThh:mm:ss.s
-
hh:mm
-
hh:mm:ss
-
hh:mm:ss,s
-
hh:mm:ss.s
Il codice di secolo non può essere omesso. Al posto del separatore di data e ora T, può essere utilizzato esattamente un carattere di spazio.
La data fornita deve essere una data valida del calendario gregoriano. In questo caso l'ora facoltativa deve essere compresa nell'intervallo da 00:00 a 23:59:59.99999...
Se è data solo una stringa di tempo, essa può avere un valore orario maggiore di 24, mentre i minuti e i secondi possono avere un valore massimo di 59.
The conversion is done for single scalar values only, not within ranges.
The conversion is done for single scalar values, as in =A1+A2, or ="1E2"+1. Cell range arguments are not affected, so SUM(A1:A2) differs from A1+A2 if at least one of the two cells contain a convertible string.
Sono convertite anche le stringhe all'interno delle formule, come in ="1999-11-22"+42, che restituisce la data 42 giorni dopo il 22 novembre 1999. I calcoli che coinvolgono le date locali, come le stringhe all'interno della formula, restituiscono un errore. Per esempio, la stringa della data locale "11/22/1999" o "22.11.1999" non può essere utilizzata per la conversione automatica.
Esempio
In A1 enter the text '1e2 (which is converted to the number 100 internally).
In A2 enter =A1+1 (which correctly results in 101).
The formula =SUM(A1:A2), returns 101 instead of 201 because the conversion does not occur in a range, only for single scalar values. Here, '1e2 is treated as string which has value 0 for the SUM function.
=SUM("1E2";1) returns #VALUE! because SUM() and some others that iterate over number sequences explicitly check the argument type.
Changing the default text to number conversion settings
The text to number conversion can be customized in the Impostazioni dettagliate dei calcoli option.