se i tuoi dati sono in foglio1
in foglio2 cella A1 inserisci
=SE(VAL.ERRORE(VALORE(Foglio1!A1));Foglio1!A1;VALORE(Foglio1!A1))
oppure direttamente
=SE(VAL.ERRORE(VALORE(Foglio1!A1));maiusc.iniz(Foglio1!A1);VALORE(Foglio1!A1))
[se questa non funziona (cosa che comunque mi sembra strana), prova
=SE(VAL.ERRORE(VALORE(Foglio1!A1));maiusc.iniz(libera(Foglio1!A1));VALORE(Foglio1!A1))
quindi trascini per le celle necessarie
copia tutta e incolla con incolla speciale > valori.
guarda comunque nell'help, soprattutto se hai problemi sui numeri,
la funzione libera()
.f
http://www.prodomosua.it
Prova:
'The following procedure removes the apostrophe in front of text, values, or
formulas in the current selection:
'Removes hidden apostrophes that are first characters.
'Works on cells with formulas, text, or values.
Sub ApostropheRemove()
For Each currentcell In Selection '[a1:a100]
If currentcell.HasFormula = False Then
'Verifies that procedure does not change the
'cell with the active formula so that it contains
'only the value.
currentcell.formula = currentcell.Value
End If
Next
End Sub
--
Fabrizio Maccarrone
/* USE <cervello> BEGIN TRAN... */
"Maurizio Rota" <maurizio.r...@infinito.it> wrote in message
news:uBn3abVp...@TK2MSFTNGP11.phx.gbl...