Re: formatting result




"dirk" <pds@xxxxxx> wrote in message
news:440450de$0$25562$ba620e4c@xxxxxxxxxxxxxxxxx

Text3.Text = (Text2.Text / x) * Val(Text1.Text)

text3 result in example : 9,1586777562
i want this to be : 9,16

Text3.Text _
= Format( ( Val(Text2.Text) / x) * Val(Text1.Text), "0.00" )

HTH,
Phill W.


.