Hello, I have the following code saving variables for my workbook to be recalled in case of a problem. The problem I am having is that my workbook is incrimenting the shifts by adding 1 then looping. The thing is, the below code is writing the shift (last number written which is s8) with "" arround it.
I am using the WRITE function which I believe is doing this. I would use the print function but then my other variables dont record correctly.. 
Currently the below code writes a file containg information formatted like this:
"Product","d:\334amd\","Tech.xls","c:\","8","1018","1018_23_21","3"
How can I make all the variables write correctly like this:
"Product","d:\334amd\","Tech.xls","c:\","8","1018","1018_23_21",3
I tried using Write #200, s1, s2, s3 ,s4 ,s5 ,s6 ,s7
and then print s8 but it puts s8 on a new line. Also, there is no comma..
Bookmarks