Case Function

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

Sub Tag_bold()

For Each i In [a1:d10233]


If i.Font.bold = True Then
i.Value2 = "" & i.Value2 & "!"
End If
Next
End Sub
Sub delpics()
ActiveSheet.Shapes.SelectAll
Selection.Delete
End Sub
Sub proper_case()
For Each x In Range("a1:a5")
x.Value = Application.proper(x.Value)
Next
End Sub
Sub Uppercase()
For Each x In Range("A1:A5")
x.Value = UCase(x.Value)
Next
End Sub
Sub Lowercase()
For Each x In Range("A1:A5")
x.Value = LCase(x.Value)
Next
End Sub

You might also like