I'm trying to create a query that will calculate a total remaining value after entering data into multiple tables.
I need to find out how many Square Feet remain in an area after entering a users who will use a specific amount of Square Feet based on position. I have separate tables for each building and floor and they're related by the Building ID. Both tables are related to my user table by IDs. This is what it boils down to:
tblLoc lists the locations available
tblBldg lists the building numbers
tblFloor lists the floor numbers and the Sq.Ft of each
tblPerso has the user and all relevant data
In the end, I need the report to say something to the effect of:
1st floor of building 1 at whatever location has 5 users using a total of 50 out of 1500 available square feet. Reamaing available square feet is 1450.
If anyone can help me, please post. Thanks in advance.
I need to find out how many Square Feet remain in an area after entering a users who will use a specific amount of Square Feet based on position. I have separate tables for each building and floor and they're related by the Building ID. Both tables are related to my user table by IDs. This is what it boils down to:
tblLoc lists the locations available
tblBldg lists the building numbers
tblFloor lists the floor numbers and the Sq.Ft of each
tblPerso has the user and all relevant data
In the end, I need the report to say something to the effect of:
1st floor of building 1 at whatever location has 5 users using a total of 50 out of 1500 available square feet. Reamaing available square feet is 1450.
If anyone can help me, please post. Thanks in advance.