How to merge multiple columns in a report
I am trying to merge three columns of data into the same column with line breaks. The original Column 0 was Project Name, Column 1 was Project Reference Number and Column 3 was a custom field we call Project Code. I was able to successfully merge Columns 0 and 1 by inserting a new column between 0 and 1, pasting the below information into the new column and lastly pasting sharecol=true to column 0.
value=<br>
valueformat=HTML
width=1
sharecol=true
When I try to repeat these steps to pull in the Project Code column, I'm having issues. I inserted a new column in between Project Name and and Project Code, pasted the below information into the new column and saved. I even tried adding column.3.sharecol=true to my now left most column and all it does is remove the header from the Project Code column without pulling over any information.
value=<br>
valueformat=HTML
width=1
sharecol=true
Below is what my text looks like currently in the left most column
column.0.displayname=
column.0.linkedname=direct
column.0.namekey=name
column.0.querysort=name
column.0.sharecol=true
column.0.textmode=true
column.0.valuefield=name
column.0.valueformat=HTML
column.1.displayname=Column
column.1.sharecol=true
column.1.textmode=true
column.1.value=<br>
column.1.valueformat=HTML
column.1.width=1
column.2.displayname=
column.2.linkedname=direct
column.2.namekey=referenceNumber
column.2.querysort=referenceNumber
column.2.textmode=true
column.2.valuefield=referenceNumber
column.2.valueformat=int
And here is the text from the column I am trying to pull in (I haver some customizations for when the field is blank to insert N/A).
valuefield=Project Code
styledef.case.0.comparison.operatortype=string
styledef.case.0.comparison.icon=false
styledef.case.0.comparison.operator=isblank
styledef.case.0.comparison.leftmethod=DE:Project Code
styledef.case.0.comparison.isrowcase=false
styledef.case.0.comparison.righttext=
styledef.case.0.comparison.lefttext=DE:Project Code
styledef.case.0.comparison.truetext=N/A
valueformat=customDataLabelsAsString
linkedname=direct
namekey=Project Code
textmode=true
querysort=DE:Project Code
case.0.comparison.truetext=N/A
case.0.comparison.righttext=
case.0.comparison.leftmethod=DE:Project Code
case.0.comparison.operatortype=string
case.0.comparison.isrowcase=false
case.0.comparison.icon=false
case.0.comparison.operator=isblank
case.0.comparison.lefttext=DE:Project Code
What do I need to add to these columns so they will merge together?