Not sure why you can't get the attached file, I just downloaded the attachment? just to note there is not excel table, it's all in power query.
I don't what new column, the add column was just shown to as example of true / false results to then use in table select rows
to filter down the table.
so ;
Table.SelectRows(Custom2, each ([Custom] = true))
I have found that if I use 'try' inside table select rows it works. that my be a future question as I'm not sure why it's needed?
Table.SelectRows( Custom1, each
Text.Contains( [Column1], "a" )
or Text.Contains([Column1] , "t")
)
to;
Table.SelectRows( Custom1, each
try
Text.Contains( [Column1], "a" )
or Text.Contains([Column1] , "t") otherwise null
)
Richard.
Bookmarks