Morning guys -
Obviously this is looking at the ENTIRE column range it takes a good 3 minutes to run (eventually works as intended) anything I can do about identifying the LASTROW and selecting that with implying the UCASE to the selected range found?
Cheers guys,
Obviously this is looking at the ENTIRE column range it takes a good 3 minutes to run (eventually works as intended) anything I can do about identifying the LASTROW and selecting that with implying the UCASE to the selected range found?
Code:
Sub addresscaptial()
Dim Cell As Range
Columns("D:F").Select
For Each Cell In Selection.Cells
If Not Cell.HasFormula Then
Cell = UCase(Cell)
End If
Next
Call addresscaptial2
End Sub
Sub addresscaptial2()
Dim Cell As Range
Columns("Q:S").Select
For Each Cell In Selection.Cells
If Not Cell.HasFormula Then
Cell = UCase(Cell)
End If
Next
End Sub
Cheers guys,