Display fraction on specific way

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

if i have fraction number like .784 and i want to display it in report as
784/100 format is there is any function can do that?

Thanks
 
..784 is not 784/100. If you want to display it on a report as 784/1000, try
set the control source to an expression like:
=Trim(Str([YourField]*1000)) & "/1000"

Make sure the name of the control is not also the name of a field in your
report's record source.
 
Back
Top