Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
JamieVJohnson2
in reply to: clutsa

Another method is to exclude the Center workpoint (which is always workpoints item 1) from your iteration.

Instead of 'for each workpoint...', use:

for ind as integer = 2 to oWorkpoints.count

dim wp as workpoint = oWorkpoints(ind)

'do work

next

jvj