08-16-2021 07:59 AM
Solved! Go to Solution.
08-16-2021 08:16 AM
Array subset as the name suggest creates a subset which is still an Array.
You can't connect a array of values to a case structure. You need an element of the array to wire to the case structure.
If you need to subject each element of the array subset to case structure, then put case structure inside for loop, index the array subset and feed it to the case structure.
Could you please explain why you're trying to do such a thing?
08-16-2021 08:17 AM
The output of Array Subset is an array. A case structure cannot accept an array. Instead of the Array Subset, use Index Array to pull out a single element.
08-16-2021 10:43 AM
You can award solutions to more than one post. (Strong hint.)