Je dois vraiment être très très nul , voici ce que j'ai fais :
- j'ai crée module3
- J'ai collé le code en rajoutant With Sheets("Original")
Sub MAJ()
Dim derLig As Long, derCol As Integer, myRange As Range, Cell As Range
With Sheets("Original")
derLig = Cells.Find("", , , , xlByRows, xlPrevious).Row
derCol = Cells.Find("", , , , xlByColumns, xlPrevious).Column
Set myRange = Range(Cells(1, 1), Cells(derLig, derCol))
For Each Cell In myRange
Cell.Value = UCase(Cell)
Next Cell
End Sub
Ca ne doit pas être comme ça qu'on sélectionne la page , mais comment alors