I have the following code on a form that displays the data I am looking for but not quite in the format I would like.
I would like to display the data as ' Team Season - 18/17 0.514% '. Everything works now except the format of the percent, it showns up as ' Team Season - 18/17 0.514285...... '. Any ideas?Code:="Team Season - " & [Record] & " - " & Format("0.000%",[Wins]/[TotalGames])
Jim O