Yep. So let's say I have an Set of Data pulls into the array1(A, B, C). Then I use Join to get it into a single string as Array2 = Join(array1, ","). Now if I want to push that back into an evaluation of Evaluate(If(Array(TRUE, TRUE, TRUE), Array2)). I cannot perform this (necessary quotation syntax aside) because Array2 is the string "A, B, C" rather than an array of strings {"A", "B", "C"}. So essentially, I want to find some mechanism to be able that ends more or less in, without looping and it's the array of strings delimited that I just cannot seem to crack
Bookmarks