SO NEW and so LOST! HELP PLS!
I am trying to create a basic manual entry timesheet app
(Ideally there’s list of clients and each staff will be assigned to client/ different client per day- and so Ideally I can have the total hours they work for each day)
My Columns are:
STAFF
WORK HOURS (st on increments of .25 - represents every 15 minutes)
DATE
I just need to get the TOTAL HOURS of each STAFF they have done for each day
I am trying to put the formula on total hour as: the SUM on TEST shows correct SUM but the SUM on app preview is wrong) HEEEELP!
SUM(
SELECT(
ENTRY[WORK HOURS],
AND(
[DATE] = [_THISROW].[DATE],
[STAFF] = [_THISROW].[STAFF]
)
)
)

