Psychadelic
New member
- Local time
- Today, 17:04
- Joined
- Dec 10, 2008
- Messages
- 5
Hello,
i have created a report which calculates the labor hours from employees.
I have for example the following fields in my report:
Sum_Duration
Sum_Breaks
Sum_Normal_Labor
and
Sum_Overtime
all above mentioned fields are shown in the Excelsheet when exporting the report to excel, except for the field "Sum_Overtime".
Sum_Overtime is a textbox:
with as controlsource the following code:
=IIf(Sum([Normal_Labor])>7.5,(Sum([Normal_Labor])-7.5),0)
This works great in my Report, but does not show in the Excel when exporting it.
Anybody know how to solve this?
*Most of the data are generated with a query with joins on different tables. Some are calculated within the report.
i have created a report which calculates the labor hours from employees.
I have for example the following fields in my report:
Sum_Duration
Sum_Breaks
Sum_Normal_Labor
and
Sum_Overtime
all above mentioned fields are shown in the Excelsheet when exporting the report to excel, except for the field "Sum_Overtime".
Sum_Overtime is a textbox:
with as controlsource the following code:
=IIf(Sum([Normal_Labor])>7.5,(Sum([Normal_Labor])-7.5),0)
This works great in my Report, but does not show in the Excel when exporting it.
Anybody know how to solve this?
*Most of the data are generated with a query with joins on different tables. Some are calculated within the report.