Not sure if this has been mentioned before, but when uploading things that have quotes in them (such as html tables and such) MAKE SURE QUOTES ARE ESCAPED. using open office, all my quotes were escaped with additional quotes after exporting back to csv, so
HTML Code:
<table border="0">
looked like
HTML Code:
<table border=""0"">
when it needs to look like
HTML Code:
<table border=\"0\">
i was annoyed that my product's descriptions weren't updating, and that was the culprit. :)