05-29-2024 06:33 AM
Dear LabVIEW Gurus.
Here is the internal part of the loop. I get an array from the loop outside the case structure and manipulate the last array element.
The problem is that I don't know the array's size in advance.
Therefore, I don't get this element.
I could get this size from a loop outside the case structure, but I don't know how to use it.
I would appreciate any suggestions about this case
Solved! Go to Solution.
05-29-2024 06:43 AM - edited 05-29-2024 06:44 AM
Hi Zoycha,
@Zoycha wrote:
The problem is that I don't know the array's size in advance.
Therefore, I don't get this element.
There is an ArraySize function. And the last element has index "size-1"...
Or you use the DeleteFromArray function: read its help...
(You could even reverse the array order and index the first element: so many options!)
05-29-2024 07:18 AM
Hello GerdW
Thank you very much for the assistance.
Now it works perfect.