Not sure if this is possible using Powershell to create excel file based on info on a text file.
for example the text file has name, phone, location for each user (in separate line)
Name: John Smith
phone: 555 555 5555
Location: CA
Name: Marry Jones
phone: 555 777 7777
Location: VA
repeat
I want to create a excel file to have three columns (Name,phone,Location) and populate data base the info from the text file.
Not sure this is even possible with powershell, my other option is to import the test file to a database then export it with correct format.
Thanks