03-27-2022
08:31 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
03-27-2022
08:31 AM
Need help with Make Path Command
Need to have certain parts suppressed when a selected parameter = no. This part is at a lower level subassembly. I cannot get my code to work, any insight would be great.
Code:
If SENT_VALVE = "NO" Component.IsActive(MakePath("UNIT_1", "CASING", "SV55")) = False End If
03-27-2022
02:05 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
03-27-2022
02:05 PM
it looks like you forgot a "then". try it like this:
If SENT_VALVE = "NO" Then Component.IsActive(MakePath("UNIT_1", "CASING", "SV55")) = False End If
Jelte de Jong
Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.
Blog: hjalte.nl - github.com