02-08-2021 09:21 AM
Hello everybody,
I was helped to write this vi, now I would save the result in a txt or excel but if I can't connect directly the cluster with the Writespreedsheet.vi.
Can you help me?
Solved! Go to Solution.
02-08-2021 10:49 AM
You need to iterate through your array of clusters in a for loop, unbundle them elements, and turn them into an array of strings. Auto-Indexing on the For Loop will let you put out a 2-D array of strings you can wire to the Write to File subVI.
02-08-2021 10:49 AM - edited 02-08-2021 10:50 AM
02-08-2021 11:09 AM
@GerdW: curious if there is a way to get the cluster name and convert its value (regardless to type) to string, concatenate them and write to file.
if possible type also, for use of saving for future configuration loads.
02-08-2021 11:28 AM
Yes. Look into the Programming - File I/O - Configuration File VIs. That is one of many ways.
02-08-2021 11:31 AM
I mean without knowing the cluster beforehand
02-08-2021 08:43 PM
ok, figured it out
02-10-2021 03:58 AM
Thanks to GerdW and RavensFan.