View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 6,953
Default Percenatge Format in TextBox

What I have read is that there is no advantage to using the $ versions of the
function in current versions of VBA. (implications are that they executed the
same).

? typename(Format$(.23, "0.00%"))
String
? typename(Format(.23, "0.00%"))
String

--
Regards,
Tom Ogilvy


"Rick Rothstein (MVP - VB)" wrote:

TextBox6.Value = Format(Cells(290, 3), "##0.00%")


Try it this way...

TextBox6.Text = Format$(Cells(290, 3), "0.00%")

Rick