i have a calculation and the results are outputting like so 96.5471447543161
i would like to format this text box to only show 96.54 (no rounding)
below is the code i am using.
Dim d1 As Double = Nothing
d1 = ((Val(Me.txtgoodsout.Text) + (Val(Me.txtnrft.Text))) / Val(Me.txtrawin.Text)) * 100
Me.txtyield.Text = d1