07-11-2024 07:41 AM
I can't figure out why I am getting a 'null' row in between every row of data when I use the timestamp in my data log. If I remove the time stamp the 'null' line goes away and attaches. I have attached the image of my VI as well as the spreadsheet output that shows the null line between each row. I also attached a copy of my VI
Solved! Go to Solution.
07-11-2024 08:04 AM
07-11-2024 08:17 AM
It is not the timestamp, it is the Array to Spreadsheet String. That node appends a newline at the end of the string.Write Delimited Spreadsheet uses the same function, so you end up with two newlines after another.
Use Number to Fractional String instead.
07-11-2024 08:36 AM
Thank you!