I have a column in Excel with the following layout:
test.com
ba.com
test2.com
What i want to generate is a powershell array list so my result needs to be:
"test.com","ba.com", "test2.com"
I wanted to start by concattening my string at the start and end but can't seem to do this.
What i do is this in an empty column (E2 is value of my first site): ="""E2&"""
But the "-character doesn't seem to escape.
how to fix this?