I'm trying to split a text field that has multiple values per row delimited by "; "
Intially I am creating a collection of distinct values but then I would like to Split those values so I only have 1 value per row and I can then check to see if a value from a different List is In this list
My code so far is: ClearCollect(colDistinctReads,Distinct(colMRs,auth));
so colDistinctReads is then the datasource for a HTMLText screen where I have the following code:
SortByColumns(Filter(colDistinctReads, Not(Value in colAuthsNew.auth) ),"Value")) - this is testing to see if the auth value in colDistinctReads is IN colAuthsNew.auth but I want it the other way around so that after the split it has seperated the auths into 1 value per row
any help greatly appreciated thank you :)