Forum Discussion
Cambio data da americana ad italiana !!!
Ciao a tutti,
Qualcuno riesce a darmi un consiglio per modificare le date da mm/gg/aaaa in gg/mm/aaaa ?
03/26/1951 |
23/03/1951
Ho un excel de 1........ righe e non riesco. Ho provato ad usare il trim /text to Columns/pivot ma non mi legge i formati custom ?
Grazie mille
Alessandro
13 Replies
- LeonPavesicSilver Contributor
Hi Lampo10,
To change the date format, you can use a simple formula in a new column.
Here's the method:1. Assuming your original date is in cell A1 (03/26/1951), and you want the result in cell B1.
2. In cell B1, enter the following formula:
=TEXT(A1, "dd/mm/yyyy")
3. Then, press Enter.
This formula will convert the date in cell A1 from mm/dd/yyyy to dd/mm/yyyy format.
4. Drag the fill handle (a small square at the bottom right corner of the selected cell) down to apply this formula to all the rows with dates.
This will change the date format for all the dates in the column from mm/dd/yyyy to dd/mm/yyyy.
------------------------------------------------------------------------------------------------
Per cambiare il formato della data, puoi utilizzare una semplice formula in una nuova colonna.
Ecco il metodo corretto:1. Supponendo che la tua data originale sia nella cella A1 (03/26/1951) e che desideri il risultato nella cella B1.
2. Nella cella B1, inserisci la seguente formula:
=TEXT(A1, "dd/mm/yyyy")
3. Quindi, premi Invio.
Questa formula convertirà la data nella cella A1 dal formato mm/gg/aaaa a gg/mm/aaaa.
4. Trascina il riquadro di riempimento (un piccolo quadrato nell'angolo in basso a destra della cella selezionata) verso il basso per applicare questa formula a tutte le righe con le date.
Questo cambierà il formato della data per tutte le date nella colonna da mm/gg/aaaa a gg/mm/aaaa.
Please click Mark as Best Response & Like if my post helped you to solve your issue.
This will help others to find the correct solution easily. It also closes the item.If the post was useful in other ways, please consider giving it Like.
Kindest regards,
Leon Pavesic
(LinkedIn)- Lampo10Copper Contributor
LeonPavesic ciao Leon, grazie mille dell’aiuto.
purtroppo non mi cambia la data comunque !
ho inserito la formula (in italia dopo la parentesi e dopo aver inserito la cella di riferimento abbiamo il ; invece che la virgola) mi restituisce #VALUEGrazie mille del supporto !!!!
How about
=DATE(RIGHT(Q12; 4); LEFT(Q12; 2); MID(Q12; 4; 2))
Format the cell with the formula as a date.