I had ask for help on this before and know was able to help so I figure this out and I hope it help some one.
MsFlexGrid1 and DBGrid1 are both bound to the same Data Control on a Form. then I place this in Form_load. MSFlexgrid1.col = 17 is the Column I want to round off the number in that column to two digit and two decimal places "##.##"
Dim Hour as String
Dim I as Integer
Hour = Text5
I = DBGrid1.ApproxCount
For I = 1 To I
MSFlexGrid1.Col = 17
MSFlexGrid1.Row = I
Text5 = MSFlexGrid1.Text
Text5 = Format(Text5, "##.##")
MSFlexGrid1.Text = Text5
Next I
I hope this can help someone it did me
