
I have an application that "was" working fine.
However, I was asked to change the IT Owner attribute to include a multiple owner names.
In SharePoint I modified that field to a "Checkbox" field. (Thus allowing multiple values.)
This field renders properly in my Form, however, after my Gallery I get a red underline in the TEXT fx for that field.
If I hover over the "Value" it says it's expecting a "Text" value. When I change it to "Text" it says that is no recognized.
How can I get this field to render properly in my Gallery?
Text is not a valid column name for a Choice column record. It will only have a Value column.
When it tells you it is expecting text, it means that you are not providing a text value to the property. In this case, ThisItem.'IT Owner'.Value is a table, not text.
To convert the table to text, you can concatenate the values together.
So, changing your formula to the following will show the values in a comma separated text:
Concat(ThisItem.'IT Owner', Value & ",")
I hope this is helpful for you.