Here is what I am trying to do.
Table 1 has two fields (date, # widgets)
Table 2 has two fields (date, total widgets)
Table 1 has 4 records. Here they are:
1/1/2020, 2
1/1/2020, 5
1/7/2020, 1
1/7/2020, 1
I want Table 2 to sum up all the widgets by da...