Hi
I'm having trouble exporting to a csv for reading into Excel when the first character of the track title has a double quote. It is only an issue when the first character is a double quote - so for instance xxxxx (7" single) in the track title works fine.
I've worked out that I need to have 3 double quotes at the beginning of the track title in the csv for Excel to import it properly.
So I have tried the following
$if($left(%title%,1)=""",$replace(%title%,","""),%title%)
The replace bit works fine, but unfortunately replaces all instances of the double quotes in the title, so it is not recognising the = """ command - I have tried many combinations of the =""" above but cannot seem to get that to be true so that it only replaces a double quote with 3 double quotes when it exists as the first character
Any ideas?
Thanks