I wrote a program that writes the time/date/ etc.. in this format. "%m/%d/%y %H:%M:%S" However, to be able to write into spreadsheet, I have to transform it into an array..
However, the array seems to only display the %m/ part and not the rest.
I was playing with something similar to this in one of my programs. All I did was wire the output of the "Format Date/Time String" to a "Build Array" function, and then I was free to wire that array to "Array to Spreadsheet String" or however you want to get it into the spreadsheet. Hope this helps.
You're going to have to post an example of the problem you're having. I've attached a VI with a build array and the text you mention, and the output array'sfirst elemetn has the entire string.
The build array is not cutting anything off. You didn't include ModifiedWriteStringToSpreadsheet and that's probably where the problem is. Use a format string of %s to tell the function to write a string to the file instead of a number. With a default format specified of %.3f, only the first part of your date/time is a valid number and the rest is truncated.