Access is not
Excel With Forms.
To expound on XPS35's comment, you've got bigger issues than the one you created this thread for. You need to start over and properly structure your tables. That process is called normalization:
Describe the method to normalize the database and gives several alternatives to normalize forms. You need to master the database principles to understand them or you can follow the steps listed in the article.
learn.microsoft.com
Give that link a read, google and work through few tutorials, then apply what you've learned to your database, fill out the Relationship Tool in Access and post a screenshot of it back here and we can help get you on the right track.
The biggest, most frequent mistake you've made is that tables should accomodate data vertically (with more rows) and not horizontally (with more fields). For example, instead of 9 fields for pallets (which I bet are not all used all the time) you should have a new table for that data and input 1 record for pallet. So if you had 5 pallets you'd input 5 rows of data into that field, not enter data into the first 5 pallet fields in tblRSHADaily and leave the other 4 blank. You've made this mistake quite often.
Similarly, actual data shouldn't be stored in field names. You've stuffed a ton of 'type' data into field names (Pallet, Semi, Perish, Sup, GR_Peri, etc.). All that data should not appear in field names, but in the table itself as values. If I ran a car dealership and tracked my inventory, I wouldn't have fields named after car types like this:
tblCars
ChevySparks, FordBroncos, ToyotaPriuses, HondaCRVs, EagleTalons, VWBugs...
7, 5, 1, 3, 9, 8, 4...
I would have my inventory like so:
tblCars
Make, Model, Inventory
Chevy, Spark, 7
Ford, Bronco, 5
Toyota, Prius, 1
Honda, CRV, 3
...
This let's me easily do aggregation on my data with standard query functions (SUM, COUNT, etc.), it is super expandable--if I later add Nissan Rogues to my inventory, I just need to add a record, not redesign the table by adding a new field in my table to accomodate it (which would also require fixing forms and reports).
That is how databases work, what you have done with yours is how spreadsheets work. Without knowing anything about your data other than your field names, I can easily see you need at least 2 more tables for this data. Again, read up on normalization and fix your database accordingly and post back here.