Results 1 to 8 of 8

Thread: Problem with description format when uploading excel csv file

  1. #1
    Join Date
    May 2012
    Posts
    5

    Default Problem with description format when uploading excel csv file

    Hi all,
    This is my first post on this forum. I am having a problem with the format of my descriptions when I import an excel file. It seems that the line breaks in my excel file are automatically deleted when they go through the system. This is what I want it to look like:
    "AIR WICK" SCENTED OIL REFILL
    *Calming Magnolia and Cherry
    *Glass fragrance bottle with quick snap for easy installation
    *Depending on setting can will last for up to 60 days
    *Use Airwick warmer only (Sku no. 1338763)
    *Help creates the desired mood in any room, family room, bedroom and bathroom
    *Boxed

    This is what I am getting:

    "AIR WICK" SCENTED OIL REFILL *Calming Magnolia and Cherry *Glass fragrance bottle with quick snap for easy installation *Depending on setting can will last for up to 60 days *Use Airwick warmer only (Sku no. 1338763) *Help creates the desired mood in any room, family room, bedroom and bathroom *Boxed

    Thanks to anyone who can help.

  2. #2
    Join Date
    Apr 2009
    Posts
    148

    Default

    Could you paste the HTML code you're using? If you're just typing each listing on its own line in the spreadsheet cell, I don't think that works. You can force a linebreak like so:

    Code:
    "AIR WICK" SCENTED OIL REFILL<br>
    *Calming Magnolia and Cherry<br>
    *Glass fragrance bottle with quick snap for easy installation<br>
    *Depending on setting can will last for up to 60 days<br>
    *Use Airwick warmer only (Sku no. 1338763)<br>
    *Help creates the desired mood in any room, family room, bedroom and bathroom<br>
    *Boxed
    Running: AspDotNetStorefront ML 8.0.1.2/8.0.1.2

  3. #3
    Join Date
    Apr 2012
    Posts
    167

    Default

    Try wrapping them in bullet points

    Example

    <ul>
    <li>Bullet point</li>
    <li>Bullet point</li>
    <li>Bullet point</li>
    </UL>

  4. #4
    Join Date
    May 2012
    Posts
    5

    Default

    I am adding about 2000 items at a time through excel in .xls format. Are you saying that I have to upload in xlm format? How do you upload in bulk in html? Forgive my newbness.

  5. #5
    Join Date
    Apr 2009
    Posts
    148

    Default

    You will upload in .xls (Excel Spreadsheet) format, as you have been. This really has nothing to do with XML (That's a different monster).

    You will need to use HTML to format your text inside the .xls file. Skriver's suggestion to use an unordered list is probably your best bet. Paste that HTML code into your spreadsheet cell, and once it is imported, the storefront knows to format the text using your HTML. It doesn't know how to format text using Excel Spreadsheet formatting.
    Running: AspDotNetStorefront ML 8.0.1.2/8.0.1.2

  6. #6
    Join Date
    May 2012
    Posts
    5

    Default

    Thank you for everyone's help. Just to make sure i'm implementing it correctly here's one I did:
    <ul>"LUNDMARK" ANTI-SLIP ALL-WAX

    <li>Self-polishing pure Carnauba<li>

    wax, dries to a high gloss

    <li>For floors in school & office<li>

    buildings

    <li>Black heel mark resistant<li>

    <li>*Waterproof<li>

    <li>Plastic bottle<li>

    <li>Qt.<li>
    </UL>

  7. #7
    Join Date
    Apr 2009
    Posts
    148

    Default

    Only a few problems with the syntax of your HTML, you'll want to use closing tags around list items.

    At the beginning of the list item:
    Code:
    <li>
    At the end of the list item:
    Code:
    </li>

    Also, I normally don't put the title of the description inside the UL tag. This might give you a better effect:

    Code:
    "LUNDMARK" ANTI-SLIP ALL-WAX
    <ul>
    <li>Self-polishing pure Carnauba wax, dries to a high gloss</li>
    <li>For floors in school and office buildings</li>
    <li>Black heel mark resistant</li>
    <li>*Waterproof</li>
    <li>Plastic bottle</li>
    <li>Qt.</li>
    </ul>
    Check out http://www.w3schools.com/ for some simple HTML tutorials.
    Running: AspDotNetStorefront ML 8.0.1.2/8.0.1.2

  8. #8
    Join Date
    May 2012
    Posts
    5

    Default

    Worked Great! Thanks for the help, I really appreciate it

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •