ho questo codice che mi mette
tutto MAIUSCOLO il contenuto
delle celle del range G13:O500
funziona ma e' molto lento !!
- Codice: Seleziona tutto
Sub VPMaiuscole()
Sheets("archivio").Select
For Each x In Range("G13:O500")
' Change the text in the range to uppercase letters.
x.Value = UCase(x.Value)
Next
End Sub
esiste un modo per fare la stessa cosa
piu' velocemente ?
si potrebbe anche controllare le righe
compilate partendo dalla G13 ad UR

ciao