Hi There,
I use Crystal Reports 10, and Eportfolio 10 (Crystal Enterprise 10) to publish the reports.
I have a report that is run in Eportfolio as a PDF file (Adobe), but when the report runs, one of the fields changes format on me.
This only happens if you run it in Eportfolio - if its run in CR10 and exported to PDF with the little envelope, it stays the same.
The fied that changes is a result of a formula below, and is a string field displayed to look like a time HH:MM
It changes to be: HH.hh:MM.mm, but they want it to stay as HH:MM
Here is the formula:
local numbervar TimeAvail := if isnull({#Actual Time in Minutes}) then {prehearing_limits.max_limit}
else
{prehearing_limits.max_limit}-{#Actual Time in Minutes};
if TimeAvail <10
then "00:0" & TimeAvail
else
if TimeAvail <60
then "00:" & TimeAvail
else
If TimeAvail = 60 then "01:00"
else
(If Remainder(TimeAvail,60) = 0
then
("0" & (TimeAvail/60) & ":00")
else
("0" & truncate((TimeAvail/60),0) & ":") & Remainder(TimeAvail, 60))
Basically, what the formula is doing, is working out the time still available to be allcated to sittings.
The Running Total {#Actual Time in Minutes} totals the time that has already been allocated, by summing a number field that shows the time in minutes
The {prehearing_limits.max_limit} field is a number field showing the total amount of time that can be allocated (usually 360 - 6 hours)
If the RT is null or nothing, then just show the {prehearing_limits.max_limit} number, else work out whats left by taking the RT from the prehearing_limits.max_limit}
The rest of this formula converts it to hours and minutes.
Can someone tell me how I can make this formula display in the correct format in the PDF when run on Eportfolio?
Let me know if its clear as mud, and if you need any other info.
Thanks
regards
BB
*** Count your blessings not your problems******

I use Crystal Reports 10, and Eportfolio 10 (Crystal Enterprise 10) to publish the reports.
I have a report that is run in Eportfolio as a PDF file (Adobe), but when the report runs, one of the fields changes format on me.
This only happens if you run it in Eportfolio - if its run in CR10 and exported to PDF with the little envelope, it stays the same.
The fied that changes is a result of a formula below, and is a string field displayed to look like a time HH:MM
It changes to be: HH.hh:MM.mm, but they want it to stay as HH:MM
Here is the formula:
local numbervar TimeAvail := if isnull({#Actual Time in Minutes}) then {prehearing_limits.max_limit}
else
{prehearing_limits.max_limit}-{#Actual Time in Minutes};
if TimeAvail <10
then "00:0" & TimeAvail
else
if TimeAvail <60
then "00:" & TimeAvail
else
If TimeAvail = 60 then "01:00"
else
(If Remainder(TimeAvail,60) = 0
then
("0" & (TimeAvail/60) & ":00")
else
("0" & truncate((TimeAvail/60),0) & ":") & Remainder(TimeAvail, 60))
Basically, what the formula is doing, is working out the time still available to be allcated to sittings.
The Running Total {#Actual Time in Minutes} totals the time that has already been allocated, by summing a number field that shows the time in minutes
The {prehearing_limits.max_limit} field is a number field showing the total amount of time that can be allocated (usually 360 - 6 hours)
If the RT is null or nothing, then just show the {prehearing_limits.max_limit} number, else work out whats left by taking the RT from the prehearing_limits.max_limit}
The rest of this formula converts it to hours and minutes.
Can someone tell me how I can make this formula display in the correct format in the PDF when run on Eportfolio?
Let me know if its clear as mud, and if you need any other info.
Thanks
regards
BB
*** Count your blessings not your problems******