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

Here is another little bit of iLogic/vb.net code you might find useful/informational in a situation like this:

Dim oPN As String = "651-004-WA001"
Dim oLastPart As String = oPN.Split("-").Last
MsgBox("oLastPart = " & oLastPart, , "")
If oLastPart.StartsWith("WA") Then
	MsgBox("oLastPart.StartsWith(""WA"") = True", , "")
Else
	MsgBox("oLastPart.StartsWith(""WA"") = False", , "")
End If

Wesley Crihfield

EESignature

(Not an Autodesk Employee)