How is everyone scheduling their sliding doors? I cannot seem to get my mind around this.
In my door schedule I have a calculated value for "Calc Width" so we can account for uneven doors (ie. if(Uneven Door, Width, if(Leaf Qnty < 2, Width, Width / Leaf Qnty)), where the uneven door parameter is a shared yes/no.
Now we have a project where we need to show sliding closet doors. The issue I am having is that dividing the Width by the Leaf Qnty is only dividing the opening in half. However, sliding door panels generally overlap one another about 2". I want to account for this overlap in the schedule so my panel sizes are correct. I had thought about embedding another "if" statement into the one above, but I cannot seem to get it to work. The new formula looks like this: if(Uneven Door, Width, if(Leaf Qnty < 2, Width, if(Slider,Width/2+1”,Width / Leaf Qnty))). Revit accepts the formula but does not report any sizes.
Any Thoughts. I could really use some assistance on this one.
Thanks