Hi, ok, I got 2 questions, I have a progress bar in access, along with the progress bar there is a percentage display label called lblFramePercent wich shows me the percentage completion, also I d my declared percComplete as single for showing me only entire numbers, but I defined perc complete like this
Me.lblFrameProg ress.Caption = PercComplete * 100 & "%" & "Completed! "
Now it shows me 16.00125%, for example...
I tried.
percComplete =Format(lblFram ePercent, "%%%.%")
but it didn't worked out
1. I wanna format my percentage display to only full integers, no decimal places, like 10%,11%,12%, etc.
2. Also Im curious to know how will it be if it has only one decimal space displaying, like, 10.1%,10.5%, etc.
Me.lblFrameProg ress.Caption = PercComplete * 100 & "%" & "Completed! "
Now it shows me 16.00125%, for example...
I tried.
percComplete =Format(lblFram ePercent, "%%%.%")
but it didn't worked out
1. I wanna format my percentage display to only full integers, no decimal places, like 10%,11%,12%, etc.
2. Also Im curious to know how will it be if it has only one decimal space displaying, like, 10.1%,10.5%, etc.
Comment