Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
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
Solved! Go to Solution.