Marsha Thank You Very much. It is still reading on one line. However much improved. Thanks
# fOR AWHILE THIUS WAS THE NEW AND IMPROVED METHOD
# For #2, you can use WriteLine instead of Write -MARSHA
# #aqFile.WriteToTextFile("C:\Users\Schofem\CheckChecks.txt", "One", aqFile.ctANSI)
# oFile = aqFile.OpenTextFile("C:\\Users\\Schofem\\Logs\\CheckChecks.txt", aqFile.faWrite, aqFile.ctANSI, False)
# oFile.Write(DDT.CurrentDriver.Value[0])
# oFile.Write(" - ")
# oFile.Write(aqDateTime.Now())
# oFile.Write(DDT.CurrentDriver.Value[26])
# oFile.Write(" - ")
# oFile.Write(DDT.CurrentDriver.Value[27])
# oFile.Write(" - ")
# oFile.Write("PassedDateCheck")
# oFile.Write("The Test")
# oFile.Close()
sPath = "C:\\Users\\Schofem\\CheckChecks.txt" ******Note to those those scoring at home. Need the double forward slashes
# Creates a text file at the specified location
aqFile.Create(sPath)
# Opens the created file for writing
myFile = aqFile.OpenTextFile(sPath, aqFile.faWrite, aqFile.ctUnicode)
# Writes text to the file
myFile.WriteLine(aqDateTime.Now())
myFile.WriteLine(DDT.CurrentDriver.Value[0])
myFile.WriteLine(DDT.CurrentDriver.Value[26])
myFile.WriteLine(DDT.CurrentDriver.Value[27])
# Closes the file
myFile.Close()