Hello,
I want to seperate my datas in the excel file what the BasicDataLogger made. How can I add every data to different column?
Private Sub StoreValue()
Try
If Not m_PauseLogging Then
Dim StringToWrite As String = m_Prefix
If m_TimeStampFormat IsNot Nothing AndAlso (String.Compare(m_TimeStampFormat, "") <> 0) Then StringToWrite &= Date.Now.ToString(m_TimeStampFormat)
For Each item In PLCAddressValueItems
If item.ScaleFactor = 1 Then
StringToWrite &= " " & item.LastValue
Else
Try
StringToWrite &= " " & item.LastValue * item.ScaleFactor
Catch ex As Exception
StringToWrite &= "," & "INVALID-Check scale factor-" & item.LastValue
End Try
End If
I think, I need here to write to add the value the new colum.
Next
sw.WriteLine(StringToWrite)
sw.Flush()
End If
Catch ex As Exception
End Try
End Sub