I am trying to automate the process of determining the size and spacing of steel reinforcement in a concrete slab. My outputs need to be 'Bar size' and 'Bar spacing'.
I need to choose the smallest value of cells ( E91:E99 ) which will then output the corresponding value in cells ( F91: F99). I have accomplished this using INDEX(F 91: F99 ,MATCH(MIN( E 91 : E99 ), E 91:E99,0)).
The problem is that there is a maximum allowable Bar spacing based on other variables. So the output of the above equation needs to be less than the maximum (located in B104)
i.e. INDEX(F91:F99,MATCH(MIN(E91:E99),E91:E99,0))< B104
In summary, the program should be able to choose the smallest area of steel (A_s) while making sure that the corresponding spacing does not exceed the max allowable spacing.The output must be the spacing that satisfies this as well as the bar size that corresponds to that spacing.
Bookmarks