10-12-18 09:17 PM
10-12-18 09:25 PM
10-12-18 09:27 PM
10-12-18 09:45 PM
Try making a new action with this as the code stage. I replaced that action with this one for ease of use long ago.
Inputs:
Collection - Collection
FilterString - Text
Column - Text
Outputs:
Sorted Collection - Text
String filter = """"; if(FilterString!="""") { filter = ""`""+Column+""`"" + "" like '%""+FilterString+""%'""; } else { filter = ""`""+Column+""`"" + "" = ''""; } DataView dv = Collection.DefaultView; dv.RowFilter = filter; Sorted_Collection = dv.ToTable();
07-01-19 05:19 PM
03-05-19 11:09 AM
06-05-19 12:57 AM
06-05-19 08:37 PM
10-07-19 08:51 AM
Hi all,
any Idea why ? wildcard is not working?
eg.: [Area] like '04? AB'
10-07-19 11:46 AM