MichaelSchulz
Board Regular
- Joined
- Apr 10, 2014
- Messages
- 64
I have two tables
One table has the data records.
The second table I hope to use to filter the first table.
The second table is this:
Over time, records may be edited, added, or deleted.
I want to use the information in this table to filter a DESCPRITION column in the other table.
I know how to filter using List.Contains; the trouble I have is filtering EndsWith dynamically with multiple values.
One table has the data records.
The second table I hope to use to filter the first table.
The second table is this:
FilterType | Text |
contains | BUILDING |
contains | BOX |
ends with | AA |
ends with | PANEL |
Over time, records may be edited, added, or deleted.
I want to use the information in this table to filter a DESCPRITION column in the other table.
I know how to filter using List.Contains; the trouble I have is filtering EndsWith dynamically with multiple values.