Rally Software

Expand all | Collapse all

Test Case Upload- adding data as a list view

  • 1.  Test Case Upload- adding data as a list view

    Posted Jul 13, 2018 06:39 PM

    I am looking to upload information for a field through the test case upload and for it to be displayed back in agile central as a list view vs. one long sentence.

     

    Current way data is displaying in Agile Central:

    Apples Oranges Kiwi Grapes

     

    Way I would like data to display in Agile Central like:

    Apples

    Oranges

    Kiwi

    Grapes

     

    Ideas? Thanks



  • 2.  Re: Test Case Upload- adding data as a list view
    Best Answer

    Broadcom Employee
    Posted Jul 14, 2018 12:56 AM

    Hi Lynch,

    You will need to create a New Line between your values. The New Line character may depend on the field. If this is a Text area field (such as Description or Notes) then it is of HTML type and then your New Line is: <br>

    So: Apples<br>Oranges<br>Kiwi<br>Grapes

     

    If your field is a String type which is a mere text then your New Line value shall be: \n so:

    Apples\nOranges\nKiwi\nGrapes

    (and if that doesn't work then try double-slash as: Apples\\nOranges\\nKiwi\\nGrapes).

     

    Please let us know if helped.

    Sagi



  • 3.  Re: Test Case Upload- adding data as a list view

    Posted Jul 17, 2018 05:56 PM

    Thanks Sagi this worked!