Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
s.mich
832 Views, 3 Replies

Way to see if part is iPart

Hello,

 

I am currently trying to automatically fill the stock number of a part to "SEE CHART" if the part is an iPart and simply fill the part number of it's a regular part. I have this bit of an iLogic rule I got working looking at some other variable for the time being, but I'm not sure how to code in to see if something is an iPart or not. 

 

Any help is much appreaciated.

 

 

Dim oPN As String
oPN = iProperties.Value("Project", "Part Number")

Dim oSN As String
oSN = iProperties.Value("Project", "Stock Number")

If "Part is an iPart" Then
	
	iProperties.Value("Project", "Stock Number") = "SEE CHART"
	
	Else 
		iProperties.Value("Project", "Stock Number") = oPN

End If

 

 

Labels (2)