I have a timesheet (Access form) with about 20 fields where employees enter their work hours. (Example: Vacation, Repair Hours, Jury Duty, Sick Leave....) In a calculated unbound control at the bottom, I want to sum up the hours to make sure the employee has 10 hours. I have to take care of null fields, so this is what I'm using in my calculated control:
This works great...except you see that's only 11 of my fields. When I enter them all, it says "Text is too long to be edited," and I can't save it. So, I can't sum ALL the fields. I don't know how to write VBA but I am familiar with how it works, after update, etc. If that's the direction I'll need to go, I'll need some hints. :-)
What solutions do you smarter people think may work to accomplish my goal?
If NeoPa or ADezii see this----HEY Y'ALL! Just a friendly HEY! A "Shout Out" as we call it here in the States. :-)
Code:
=Nz([ShopOrderHours],0)+Nz([VacationHours],0)+Nz([SickLeaveHours],0)+Nz([FamilySickLeaveHours],0)+Nz([FMLAEmpHours],0)+Nz([FMLAFamHours],0)+Nz([SafetyMeetingHours],0)+Nz([SafetyTrainingHours],0)+Nz([JuryDutyHours],0)+Nz([MeetingHours],0)+Nz([TrainingHours]
What solutions do you smarter people think may work to accomplish my goal?
If NeoPa or ADezii see this----HEY Y'ALL! Just a friendly HEY! A "Shout Out" as we call it here in the States. :-)
Comment