I'm trying to create a database for calculating the approximate replacement cost of a house.
In the form I have, you input the square footage of each floor and the complexity of the exterior wall shaping, which is recorded in tbl:Main.
I then have a query which adds all of the floors square footage to obtain a “Total square footage”.
I have another table , tbl:ShapeMultip lier, which has predefined variable which take into consideration the square footage and the complexity of the exterior walls. With the information this provides, you multiply the square footage by this multiplier to produce a value.
View of tbl:ShapeMultip lier
How? Or what is the easiest way for a query to lookup the multiplier required given the square footage and the complexity indicator?
In the form I have, you input the square footage of each floor and the complexity of the exterior wall shaping, which is recorded in tbl:Main.
I then have a query which adds all of the floors square footage to obtain a “Total square footage”.
I have another table , tbl:ShapeMultip lier, which has predefined variable which take into consideration the square footage and the complexity of the exterior walls. With the information this provides, you multiply the square footage by this multiplier to produce a value.
View of tbl:ShapeMultip lier
How? Or what is the easiest way for a query to lookup the multiplier required given the square footage and the complexity indicator?
Comment