Message 1 of 12
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello my code for changing Multi value list parameter with another Multi value parameter is not working for some reason. If I change it to another it may update it 1 time, but it's under wrong parameter value and doesn't change after that. I have a form where I change these. This is an external rule.
If Parameter("Kategoria") = "Tyhjä" Then MultiValue.SetList("Tuote", "Tyhjä") InventorVb.DocumentUpdate() ElseIf Parameter("Kategoria") = "Kisko" Then MultiValue.SetList("Tuote", "Suora", "Suorataivutettu", "Kulma") InventorVb.DocumentUpdate() ElseIf Parameter("Kategoria") = "Läpivienti" Then InventorVb.DocumentUpdate() MultiValue.SetList("Tuote", "Lattia", "Katto") InventorVb.DocumentUpdate() End If
Solved! Go to Solution.