Good morning all. I am trying (unsuccessfully, obviously) to clear an array inside a case structure. (See case structure at right side of vi, I colored it green to make it easy to find). Here's (briefly) what I'm trying to do. I have 6 test probes in the process. All six probes are connected to the Alcatel Detector through a 6-solenoid manifold. As I run the test, I want to sample 1/second, for let's say 3 minutes. For the first 30 seconds, I want to pull a sample from from probe 1, so I turn on solenoid one and leave it open for 30 seconds. Now all 30 values are tagged as having come from Probe 1, and they're stored in array 1. I can now compute an average value for probe 1. Then I close solenoid 1 and open solenoid 2, saving the next 30 values to array 2. (and so-on, until I have measured all 6 probes for 30 seconds each). Then I wait a pre-determined amount of time and repeat the process. Here's my problem. I want to clear out each array as I begin the second iteration, so that I can easily compute the average of the last 30 values. If I initialize the array by connecting a constant 0 to the shift register on the for loop insid ethe case structure, it does not work, nor does it work to place the 0 outide the overall for loop (the next for loop going out, NOT the OVERALL for loop). I know my programming skills are still crude, but I'm putting everything into this. Anyone have any suggestions?