Hi, there was wondering if anyone knew how to not print/ skip the first data line in a table. I have a complex job with a job tree. I’m trying to output a table with the children of the root node in the tree while leaving out the root job’s info.
I don’t want the assembly information, only the components
Again, this depends a bit on the application. If the part type to suppress is “Assembly”, you could use a filter condition PartType<>"Assembly", assuming the field in question is named PartType. Another approach could be LL.FCountData<>1 which should always skip the first record.