Hi there - I have a report that is displaying fine in Classic but as soon as I convert to NWE - the two fields that had a space between them in a shared column in Classic do not have a space between them in NWE. I cannot figure out what to edit in the text mode to add a space between the two fields that are sharing a column so they display correctly in NWE? Any ideas?
Here is the text mode:
column.0.displayname=Project Contact
column.0.sharecol=true
column.0.shortview=false
column.0.textmode=true
column.0.usewidths=true
column.0.value=</font><font color=8A8482>Name:<mark></mark></font><font color=0000ff><b>
column.0.valueformat=HTML
column.0.width=200
column.1.displayname=
column.1.linkedname=direct
column.1.namekey=Contact First Name.Project
column.1.querysort=DE:Contact First Name.Project
column.1.sharecol=true
column.1.textmode=true
column.1.valuefield=Contact First Name.Project
column.1.valueformat=customDataLabelsAsString
column.2.displayname=
column.2.linkedname=direct
column.2.namekey=Contact Last Name.Project
column.2.querysort=DE:Contact Last Name.Project
column.2.sharecol=true
column.2.textmode=true
column.2.valuefield=Contact Last Name.Project
column.2.valueformat=customDataLabelsAsString
This is the result - between first and last name in NWE - no space
Same report fields in Classic - with space
Thanks for your help!
Sherri
Topics help categorize Community content and increase your ability to discover relevant content.
Screen shots didn't come through - see attached
Views
Replies
Total Likes
Screen shot with space
Views
Replies
Total Likes
Hi - Because you are not adding any HTML between first and last name, I would do a CONCAT expression. (I'll show you below)
Now your code for Column 0 a few things...
I've simplified it a little but, if that doesn't give you want you want, ignore my column.0 stuff and just copy column.1.
Something like...
column.0.displayname=Project Contact
column.0.sharecol=true
column.0.shortview=false
column.0.textmode=true
column.0.usewidths=true
column.0.value=<font color=8A8482>Name: </font><font color=0000ff><b>
column.0.valueformat=HTML
column.0.width=200
column.1.displayname=
column.1.sharecol=true
column.1.textmode=true
column.1.valuefexpression=CONCAT({Contact First Name.Project}," ",{Contact Last Name.Project})
column.1.valueformat=HTML
Thanks Anthony - i cleaned up the font line - the worked too but I added the CONCAT line column 1 with the HTML format - it removes the first name - it doesn't CONCAT it with the last name. I tried it in the column 2 also - and it removed the last name there. - It doesn't seem want to grab both of those fields together. Any other thoughts?
Views
Replies
Total Likes
Hi,
So, just to confirm, the idea is to get rid of Column 2 stuff as you don't need to share if you are doing a CONCAT statement. And if that messes things up for you, you don't have to use it. You can just use the column.0. stuff and keep what you have. Just wanted to share you can use CONCAT if you want to combine values and don't have any paragraph breaks :)
And I'm so sorry, I forgot the DE:'s as they are custom fields
column.0.displayname=Project Contact
column.0.sharecol=true
column.0.shortview=false
column.0.textmode=true
column.0.usewidths=true
column.0.value=<font color=8A8482>Name: </font><font color=0000ff><b>
column.0.valueformat=HTML
column.0.width=200
column.1.displayname=
column.1.sharecol=true
column.1.textmode=true
column.1.valuefexpression=CONCAT({DE:Contact First Name.Project}," ",{DE:Contact Last Name.Project})
column.1.valueformat=HTML
Views
Replies
Total Likes
Hi Anthony - figured it out - thanks for the help. I ended up removing the data from column two completely which was the last name information - using your value expression above and re-sharing columns - all looks good!
Views
Replies
Total Likes
Is there a reason you're using first and last name instead of just name? or component.name?
Views
Replies
Total Likes
We have some custom functionality for a CRM in Compass that houses Customer information, contact info, address info into programs (we use programs as our customer records) - these fields are split as part of that functionality so we can sort - first to last or last to first for other reasons.
Views
Replies
Total Likes