Merge data from two columns without a line break

You can merge the data from multiple separate columns to display it in one column with no breaks or spaces between the values from each column.

TIP
This approach is recommended when you merge two columns that can never show a value for the same record at the same time. For example, in a Work Item report, the Issue Name and Task Name columns can be merged without a line break between them because a Work Item can never have an Issue Name and a Task name at the same time. A Work Item can be either an Issue or a Task in Workfront.

To merge data from two columns without a line break:

  1. Go to a list of objects.

  2. From the View drop-down, select a view, then click the Edit icon Edit icon to edit the view.

  3. Go to the first colum you want to merge, then click Switch to Text Mode > Edit Text Mode.

  4. Add the following text to the first column you want to merge:

    sharecol=true

    When you merge the first two columns of a list or report, Workfront precedes each line of text that contains information about the object in the first column with column.0. and the lines of text that contain information about the second column with column.1. .

    You must precede the column number of the first column with the number of that column. Column counting always starts with the leftmost column of the list or report labeled as column.0..

    If you share more than one column, ensure you add the column number in the lines of code that contain the sharing information for each column.

    EXAMPLE: The following is the text mode code for a merged column that contains three separate columns, starting with the second column of the list. The merged values are Project Name, Planned Start Date, and Project Owner’s name and there is no break between the three values:

    column.1.valuefield=name
    column.1.valueformat=HTML
    column.1.sharecol=true
    column.2.valuefield=plannedStartDate
    column.2.valueformat=atDate
    column.2.sharecol=true
    column.3.valuefield=owner:name
    column.3.valueformat=HTML
    

    Shared column with no line breaks

  5. Click Done, then Save View.