Hi @kgiles123
That info helped a lot! There's a several ways to accomplish this. Here's one idea:
1) Create a collection to combine your tables.
You can include this type of formula in your app OnStart property or the screen OnVisible property. In this example, I've used a button. Be sure to replace my collection names / columns with your actual ones:
ClearCollect(colNewTable,
AddColumns(colProviderState,
"Care", LookUp(colProviderResource, Name = colProviderState[@Name]).Care,
"AR Start", LookUp(colProviderResource, Name = colProviderState[@Name]).'AR Start',
"AR End", LookUp(colProviderResource, Name = colProviderState[@Name]).'AR End'
)
)
The result is one combined table, which I believe is what you were looking for. In this example, the first 2 tables are the different sources, and the 3rd is the combined:

2) Use your formula to filter the desired results
Concat(Filter(colNewTable, Dropdown1.Selected.Age >= 'AR Start' && Dropdown1.Selected.Age <= 'AR End' && State = Dropdown2.Selected.State && Care = Dropdown3.Selected.Care), Name & Char(13))

You'll need to modify the ".Age" portion of the formula to work with your column names. That's just how my example was set up. Just type "." after the "Dropdown1" to see what valid options exist for your data