I currently have a text file that looks like this
I need to be able to create a VBScript file that will use FileSystemObject to change the rows into columns and output the data into an html table like below
I am having a difficult time finding a method for transposing. I am new to VBscripting, I assume that I can still use the CreateTextFile method for HTML?
Dim fso, MyFile
Set fso = CreateObject("Scripting.FileSystemObject")
Set MyFile = fso.CreateTextFile("C:\Users\User.mdm\Desktop\PracticeTest\table.html", True)
MyFile.WriteLine(?)
MyFile.Close


array2D( row, column)would be simpler to fill a 1D array of 1D arrays which would be indexed asarray1x1( row)( column). In any case, split your task into pieces of code that do a certain (simpler) sub-tasks (as I advised previously; just a kind of modular programming).tmp = Split(row, ",")totmp = Split(row, "|")