Skip to main content
Solved

Multiple Record Select Field as a List format desired

  • July 10, 2020
  • 1 reply
  • 15 views

My PDB report includes a Multiple Select field and the report requires a LIST format instead of the defaulted line of selected items…

Q> Is there a way to have the print changed to a LIST format?

Best answer by ScottWorld

This is what I would do — create a formula field that creates carriage returns in between each value.

The multiple select field returns an array with commas in between the values, so you can substitute the commas for the carriage return symbol, which is \n.

So your formula field would look like this:

SUBSTITUTE({RENEWAL / NEW MARKETING},",","\n")

Then, use that formula field on your Page Designer document.

View original
Did this topic help you find an answer to your question?

1 reply

ScottWorld
Forum|alt.badge.img+35
  • Genius
  • 9583 replies
  • Answer
  • July 10, 2020

This is what I would do — create a formula field that creates carriage returns in between each value.

The multiple select field returns an array with commas in between the values, so you can substitute the commas for the carriage return symbol, which is \n.

So your formula field would look like this:

SUBSTITUTE({RENEWAL / NEW MARKETING},",","\n")

Then, use that formula field on your Page Designer document.


Reply