Hi Gasman
The OP did not want to upload his database to the Forum and also had no idea on how to create a query .
All I did was correct his table fields which had been set as text Data Currency.
His original table data shown.
I then showed him how to change the Record Source of the Report to a Select Statement as shown below:-
Code:
SELECT
[CSEA Data 2016 - Time Type Columns].[Event Date],
[CSEA Data 2016 - Time Type Columns].[Employee ID],
[CSEA Data 2016 - Time Type Columns].[Employee Name],
[CSEA Data 2016 - Time Type Columns].[Title Description],
[CSEA Data 2016 - Time Type Columns].[Pay Week],
[CSEA Data 2016 - Time Type Columns].TRC,
[CSEA Data 2016 - Time Type Columns].LEAVE,
[CSEA Data 2016 - Time Type Columns].OTCOMP,
[CSEA Data 2016 - Time Type Columns].OTCASH,
[CSEA Data 2016 - Time Type Columns].[Work Week],
[CSEA Data 2016 - Time Type Columns].[HOURLY ],
(Nz ([Work week], 0) -40) - Nz ([leave], 0) AS D,
IIf(
[Work Week] < 40,
Nz ([Leave], 0) + Nz ([OTCash], 0) + Nz ([OTComp], 0),
0
) AS LessThan40,
IIf(
[Work Week] > 40,
Nz ([Leave], 0) + Nz ([OTCash], 0) + Nz ([OTComp], 0),
0
) AS GreaterThan40,
IIf([OTCASH] < [D], [OTCASH], [D]) AS Hrs,
[Hrs] * [Hourly] * 1.5 AS [FLSA Costs]
FROM
[CSEA Data 2016 - Time Type Columns];
He was then able to get the Total of the "FLSA Costs" as required in the Footer of the Report.