I have two tables as follows:
Matters table:
Matter(s) | Description | Client Name | Lead Source |
Bills table:
Client Name | Matter(s) | Total ($) |
Both of these tables are pulling from two different data sources. I need a way to combine them both into one table so that table 3 is as follows:
Lead Source | # Matter(s) | Total ($) |
I believe the best way to do this is to create records, but I'm not sure. In addition to combining the data from two tables into one, I also need the data to stay consistent (i.e. Client Name on matters table and bills table combine into one data set on 3rd table so that Lead Source and Matters can be "associated" with them.)
If anyone knows of a way to approach this, I would appreciate the help. I've been working on it for over a week.