06-21-2023 12:42 PM
Hi Everyone,
I have a requirement to build an array in TestStand. The idea is to maintain a Variable called "Locals. DB" in my main sequence as below
Can you please help me to find how to append the values to this variable during the execution of each test case (It's similar to Result list variable in TestStand)
Thanks,
Vipin
Solved! Go to Solution.
06-28-2023 05:03 PM
2 potential options:
Option 1-
Locals.DB += {Locals.Current} where current is a container that matches the container in DB and has the actual values you want to insert.
Option 2-
There's a demo here that shows how to do it through the API: https://forums.ni.com/t5/NI-TestStand/Dynamic-Measurement-name/m-p/659622?query.id=288653#M18421
Hope this helps,
06-30-2023 04:12 AM
Hi ,
Thanks for the reply. I will try this and update here