@emodderman + @Anonymous
@emodderman wrote:
I think why you can't get the phased thing to work is because you want to see the item listed in the schedule whether it is there or not, and you can't get it listed there if the schedule is phased. (i guess this explanation isn't for you, but for others who suggested it)
I agree that the situation where a schedule needs to show a zero count for equipement families loaded in the project but not placed is a challenge. I would argue that this kind of schedule is contrary to good documentation practices in that it implies that this equipement is needed. For collaborators, it will elicit unproductive coordination questions and for contractors, it opens the door to estimation and construction errors.
I suspect it comes from a previous CAD and paper workflow where an empty table is set up to allow the design architect or engineer to markup the information for a drafting technician to complete.
A single schedule view that tries to accomplish both these objectives will definitely be problematic as you are working against Revit's strengths. As an alternative, you could have a "design" schedule listing all loaded families allowing a "menu of choices" and a "tender" schedule that show's only modelled equipement once the initial design is set.
**EDIT** (again) OK, so you can't get the New Count to total a calculated total from the other column. thats the answer and the problem. Just like when you get a footer with a calculated total, that calculated total can't be used somewhere else in a formula (Autodesk, would you care to fix this please?)
I agree with @emodderman , your objective to remove only one item can't be done with a formula in the total.
If you insist on subtracting the "legend" items being included in the total count, you could include a yes/no parameter called COUNTABLE that is checked yes, if it is to be counted (ie modelled in the project) or unchecked, if it is part of the "legend". That way, your "MYCOUNT" would be setup with the following IF statement:
MYCOUNT = IF (COUNTABLE, 1, 0)
The total of MYCOUNT would then reflect only the equipment placed in the building project.
As a quality control check (since the users could erroneously set COUNTABLE to the wrong setting), you could select all the equipment families in the project to COUNTABLE = 1 then go to your "legend" view and select all the equipment families in that view to COUNTABLE = 0.
-luc
ERRATA: This is a similar solution to what @ToanDN just posted but with a parameter in the family rather than manually adding a 1 or 0 in your schedule.