Graph Review for New User

New to Dynamo here. Hoping someone could review and critique this graph I created to review Assembly Type Name, against another parameter, and if true/false, it checks/unchecks a box in a QC schedule.

Thanks in advance!
Aaron K

The logic is spot on, but you could clean up your nodes a little bit.

There’s no need to have Categories and All Elements of Category in there twice when you’re using the same category. Same thing goes for GetParameterValueByName - you can use a list of parameterName inputs and list levels to get both values from the same list of elements.

Splitting up everything like this is a good way to learn and double-check yourself when writing a graph, but it’s often worth cleaning up and combining nodes after you’ve gotten your graph working.

Well done though!

1 Like

Beautiful; thanks for the tips!