03-09-2015 02:21 PM - edited 03-09-2015 02:29 PM
I have a program that has multiple arrays. Recently there were about 80 more new values I needED to add to each array. I just finished adding the new values to one of the arrays - is there a way I can highlight and copy that whole block of values I just added so I can then paste it onto the other arrays? It seems like I can only highlight, copy and paste one value at a time.
Solved! Go to Solution.
03-09-2015 02:30 PM
Do it programmatically. Copy your array to a new VI. Use Array subset to get the portion. Add it to a copy of your other array with Build Array or Insert into Array. Copy the updated arrays back to the original locations.
03-09-2015 02:30 PM - edited 03-09-2015 02:36 PM
EDIT. It doubled posted message.
03-09-2015 02:44 PM
I was considering that, but I found these new values are all the same for each array, so I was hoping there was a way to do a simple copy and paste.