I just received an update of Business Vision with Report Writer Crystal Reports 10 included.
I want to make a minor change to the Laser Paycheque form. In a Label it has regular hours @ rate but the report rounds up the regular hours. I need it to go to two decimal places.
Is there a quick & simple way to do this? PS.. I have not have any Crystal report training but need to get paycheques out asap. Thanks in advance.
This is what I get when I edit the label
WhilePrintingRecords;
NumberVar RegularTimeDollars;
NumberVar RegularTimeHours;
NumberVar RegularTimeRate;
if RegularTimeHours = 0
//no regular hours
then ""
else if RegularTimeHours * RegularTimeRate = RegularTimeDollars
//regular hours all at one rate
then "(" + Totext(RegularTimeHours, 0, "") + " hours at " + totext(RegularTimeRate, 2) + ")"
else //when more than one rate was applied
"(" + Totext(RegularTimeHours, 0, "") + " hours at multiple rates)"