First of all if there is a technical term with this structure please let me know so I know how to search it better.
Basically the structure is like so:
There are 3 tables.
Property
Units
Lease
Property can have many units
Property can have many leases that also reference units for each property using Enumlist via:
SELECT(Units[Unit #],[Property Name]=[_THISROW].[Property Name])
Now in I have created a view that I want to based on the Units Table, e.g. a Rent Roll. The units table would then be able to reference the leases and pull active lease data into the units table.
The other nuance is that the Lease can select multiple units. E.g., I lease two units in 1 building. So in the view, 2 units may have the same lease data. I can eliminate this feature if it isn’t practical.
To restate my ultimate goal, I would like to be able to create a view based on the Units table that pulls any lease data into the inline view.
I am stuck on how to get data connected back to the unit as a list or multiple values. I do have some formulas that reference the lease to get rent data points that pulls into the Units table so I think it is possible. Just trying to get my thinking straight on this.
Best,
Tyson