text box 1000's Separators

S

sam99

Hi,
I have this code I just want to put 1000’s spectators to it how to d
that?

TextBox138.Value = Format(CDbl(TextBox135.Value)
CDbl(TextBox86.Value), "0.0000")


Than
 
C

Claus Busch

Hi Sam,

Am Sat, 21 Jul 2012 09:39:40 +0000 schrieb sam99:
TextBox138.Value = Format(CDbl(TextBox135.Value) /
CDbl(TextBox86.Value), "0.0000")

try:
With Sheets("Sheet1")
.TextBox138 = Format(CDbl(.TextBox135) / CDbl(.TextBox86), _
"0,00#.00")
End With


Regards
Claus Busch
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top