Hi,
I have a horizontal gallery showing the names of employees. In the interest of saving horizontal screen space I want to replace the space character with a new line character. This should result in the first name displaying ontop of the last name. This however does not happen for all iteams in the gallery. To replicate the issue i have put together the folowing simple example:
1. Create a collection containing first and last name:
ClearCollect(Collection1,
{Name: "Anthony Phan"},
{Name: "John Smith"},
{Name: "Kevin Do"},
{Name: "Aaron Oxford"}
)2. Great a horizontal gallery and assign Collection1 as the data
3.Insert a label inside the gallery with the text field according to the follwoing formula
Substitute(ThisItem.Name, " ", Char(13))
For some reason only the first iteam will replace the space character with a new line character. All subsequent records will just remove the space character and show the first an last name side by side as shown in the attached image.