Thread: Proper
View Single Post
  #5   Report Post  
Dave Peterson
 
Posts: n/a
Default

VBA has its own builtin function, too:

Option Explicit
Sub testme()
Dim myStr As String
myStr = "now is the TIME FOr all good MEN TO COME..."
myStr = StrConv(myStr, vbProperCase)
MsgBox myStr
End Sub



"!!!" wrote:

What is the vba equivalent to the worksheet proper
function?


--

Dave Peterson