Get a list of plans for a family type

Hi everyone,

I want to extract a list of REVIT plan which belong to the family type “GAM_Plancher Haut” (Family : Structural plan).
I tried this bellow but it doesn’t work and I don’t know what this return exactly (27 element on the liste but in my project I have only 13 differents plans).

I’m sure there is an easy way to fix that. May have you a solution ?

Thank you

I don’t think you can get the views from the ViewFamilyType without using Python. If you don’t want to go that route you’ll have to start with your views and filter down to the ones that match your ViewFamilyType.

Thank you @Nick_Boyts for your response. I think the best way is to use python even if it has to be harder. Have you an idea to start the python script ? (I know how to use python but in this case I have no idea to start). I’ll tried also your second proposition.

I’d probably start with a FilteredElementCollector and see if that gives you any options.

You can also use the Views.GetByType node of archilab package.


view type.dyn (9.9 KB)