If you want to include thousands separators:
Me.txtCRAmtAdjusted = Format(Me.cboClient.Column(2),"#,##0.00")
If not:
Me.txtCRAmtAdjusted = Format(Me.cboClient.Column(2),"0.00")
BTW if you do include thousand separators and then apply an arithmetical
operation to the value the result will not include thousands operators, so
would itself need to be formatted to do so.
Ken Sheridan
Stafford, England
> Please help!
>
[quoted text clipped - 14 lines]
>
> Thanks in advance,
redFred - 30 May 2008 18:51 GMT
Excellent! That does the trick.
Thanks for the remedy and for the instruction.

Signature
redFred
> If you want to include thousands separators:
>
[quoted text clipped - 29 lines]
> >
> > Thanks in advance,