05-16-2022
07:21 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
05-16-2022
07:21 AM
Hi @koenroovers. If I am understanding the need/want correctly, you want to leave any parts list rows visible only if the part number contains "WA", right? If so, I believe you can just change this one line as follows:
Change this:
If oCell.Value = "" Then
to this:
If oCell.Value.Contains("WA") Then
Wesley Crihfield
(Not an Autodesk Employee)