Good Afternoon
what would be the easiest way to convert the following data into a formatted excel worksheet? In a application that allows me to save the data as a csv I'm presented with the following opening the file.
In the days gone by we were able to import data based on double quotes and semicolons and excel would line up the data
The desired output would be a new sheet
A B C D E F G H
source identifier owner data_tier device_type ip_addresses domain created
inputfile solutions Johns Host 192.20.20.15, 192.20.20.16 2022-05-03T01:00:00.602916-05:00
Thanks
what would be the easiest way to convert the following data into a formatted excel worksheet? In a application that allows me to save the data as a csv I'm presented with the following opening the file.
In the days gone by we were able to import data based on double quotes and semicolons and excel would line up the data
source;"identifier";"owner";"data_tier";"device_type";"ip_addresses";"domain";"created_at" | |
inputfile;"solutions";"Johns";"";"Host";"192.20.20.15 | 192.20.20.16";"";"2022-05-03T01:00:00.602916-05:00" |
The desired output would be a new sheet
A B C D E F G H
source identifier owner data_tier device_type ip_addresses domain created
inputfile solutions Johns Host 192.20.20.15, 192.20.20.16 2022-05-03T01:00:00.602916-05:00
Thanks