'FilteredElementCollector' object has no attribute 'LookupParameter'

its because the “LookupParameter” doesn’t work on a list - rather works on elements
what you need to do is:
vol_param = [i.LookupParameter(“Volume”).AsInteger() for i in col ]

also - you will have to specify .AsString() or .AsInteger() or similar based on how the parameter is stored

4 Likes