Designing for this hypothetical process:
A client is sending me monthly data from 2 departments in 2 separate emails. Let’s assume i can read the emails and import the data from each dept into their own tables (T1 and T2). The common elements in each table are clientID, month, year.
A report for the month requires calculating results based on data from both tables.
Now there is a chance to get all the data in a single email. This leads me to think that i could combine these 2 tables into one master table (T3) using various update and append queries, but this is getting to be complicated. Taking that complication as “a sign”, I am wondering if i should rather split the 1 big email into two parts and carry on as before.