How do I make something not bold in a report? | Community
Skip to main content
Level 4
January 13, 2021
Solved

How do I make something not bold in a report?

  • January 13, 2021
  • 1 reply
  • 908 views

This is probably another easy one that I am stumped on. I made a report that is showing all other projects within a program in a column based off a custom form field. However, it is showing them as bolded and I'd prefer just plain text. Any ideas how to just make this plain? See last column in screenshot.

displayname=Other Assets in Project

listdelimiter=<p>

listmethod=nested(program.projects).lists

textmode=true

type=iterate

valueexpression=IF({DE:Is this the most primary asset for this release?}="Yes","",CONCAT({DE:RAND Asset Number}," (",{DE:Release number},")"))

valuefield=name

valueformat=HTML

I tried listdelimiter=<li> and valueformat=customDataLabelsAsString and it still shows as bolded.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by SarahNa

Hmm... that is weird - I tried a similar expression in a report in my environment and it is not showing as bold. Work around you can try is adding a column before the Other Projects in Programs with this:

displayname=Other Projects in Programs

sharecol=true

textmode=true

value=</b>

valueformat=HTML

Just taking a shot!

1 reply

Level 6
January 14, 2021

Hey Ryan,

Are any of the other columns in your report configured to be bold? Sometimes this carries over. Just a thought!

Level 4
January 14, 2021

Hi Sarah,

Nothing specifically I'm doing. The first Doc ID and Title column is just the default Project Name field, no text mode updates. At any rate, here's that column if there's something I should change in there. Otherwise, everything else is basic plain text.

descriptionkey=name

displayname=Document ID and Title

link.linkproperty.0.name=ID

link.linkproperty.0.valuefield=ID

link.linkproperty.0.valueformat=int

link.lookup=link.view

link.valuefield=objCode

link.valueformat=val

linkedname=direct

listsort=string(name)

namekey=name.abbr

querysort=name

section=0

shortview=false

stretch=100

valuefield=name

valueformat=HTML

width=250

SarahNaAccepted solution
Level 6
January 14, 2021

Hmm... that is weird - I tried a similar expression in a report in my environment and it is not showing as bold. Work around you can try is adding a column before the Other Projects in Programs with this:

displayname=Other Projects in Programs

sharecol=true

textmode=true

value=</b>

valueformat=HTML

Just taking a shot!