disclaimer
issue
User will not be able to select numbered list item if display name contains newline.
If this workaround is not suitable in your use case, please contact our Care team.
workaround
- Remove newline from display name.
- Programmatically remove the new line.
To achieve this, we will use a 2-cell helper module and the SUBSTITUTE function.- Create a module with 2 line items (we'll call them CR1 and CR2), no other dimensions. Set both line items to text.
- Set the value of CR1 to 'a<newline>b'.
- Set the formula of CR2 to MID('CR1', 2, 1). This will extract the <newline> from CR1.
- Update property used for display name to use the SUBSTITUTE formula.
eg, SUBSTITUTE(<lineItem_or_property_with_newline>, CR2, " ")
3. Use NUX