You are on page 1of 1

Sub Maysculas() Dim c As Range For Each c In Selection c.Value = StrConv(c.

Value, vbUpperCase) Next c End Sub

_________________________________________________ Sub Minsculas() Dim c As Range For Each c In Selection c.Value = StrConv(c.Value, vbLowerCase) Next c End Sub

You might also like