I have formula for bold something I want. But when is bold it is coming in new row. How can stay that in the same row?
I have this formula:
WENN[→ Vertragsänderungen gültig ab?]=””;””;”<DIV style=””text-align:left””>Vertragsänderungen gültig ab: “&[→ Vertragsänderungen gültig ab?]&”|”)&WENN[V1: Übertritt oder Versetzung?]=FALSCH;””;”<DIV style=””font-weight:bold””>V1: Übertritt oder Versetzung: </DIV>”)&WENN[→ Befristet bis]=””;””;”Befristet bis: “&TEXT[→ Befristet bis];”dd.mm.yyyy”)&”|”)&WENN[→ Store neu]=””;””;”Store neu: “&[→ Store neu]&”|”)&WENN[→ Kostenstelle neu]=””;””;”Kostenstelle neu: “&[→ Kostenstelle neu]&”</DIV>”)
I want this one not to be in other row. “<DIV style=””font-weight:bold””>V1: Übertritt oder Versetzung: </DIV>”
sharepoint.jpg here how it is coming.
Thank you!
Right. Div is a block element and span is inline. You could have still used Div, but you would need to include additional styling to force it to display in a single line. Your text can still wrap around to the next line if the container for these elements isn’t wide enough. You may want to wrap them with another Div or Span so that you can manually set the wrapping.
WENN[→ Vertragsänderungen gültig ab?]=””;””;”<DIV style=””text-align:left””>Vertragsänderungen gültig ab: “&[→ Vertragsänderungen gültig ab?]&”|”)&WENN[V1: Übertritt oder Versetzung?]=FALSCH;””;”<Span style=””font-weight:bold””>V1: Übertritt oder Versetzung: </Span>”)&WENN[→ Befristet bis]=””;””;”Befristet bis: “&TEXT[→ Befristet bis];”dd.mm.yyyy”)&”|”)&WENN[→ Store neu]=””;””;”Store neu: “&[→ Store neu]&”|”)&WENN[→ Kostenstelle neu]=””;””;”Kostenstelle neu: “&[→ Kostenstelle neu]&”</DIV>”)
I’v changed Div for Span and it is working very good
“<Span style=””font-weight:bold””>V1: Übertritt oder Versetzung: </Span>”