I am trying to force upper case letters to be entered into my input box I tried a couple of methods with no luck. I am hoping that someone can help me. I get an error 438 when I run the code
Code:
Dim myNum5 As String
myNum5 = Application.InputBox("Enter Time Charge ex. PAQ-000")
Range("M" & LR - 3).Value = (myNum5)
With Selection
.vbUpperCase
.Columns.AutoFit
.VerticalAlignment = xlCenter
.HorizontalAlignment = xlRight
End With