Change Lowercase or Proper to ALL CAPS

  • Thread starter Thread starter Don
  • Start date Start date
Dim cell as Range
for each cell in selection.SpecialCells(xlConstants,xlTextValues)
cell.Value = Ucase(cell.value)
Next

would be the basic approach.
 
Back
Top