So a bit of exposition is required:
I have a single column table, TimesNoFormat, which is nested in a gallery (for reasons I'm not sure are relevent to the question so I'll leave them out).
What I'm trying to do is concatenate the values in this table with a value from a row in the gallery.
Eg. The table items in row one in the gallery will go from 0015, 0030.... to M0015, M0030.
In the Items property of the table I have used:
AddColumns(
TimesNoFormat,
"RoomNumber",
Concatenate(
ThisItem.Title,
TimesNoFormat.'New Times'
)
)
Which is not throwing any errors.
However, when I try to display the items in the new column as text on a button I get the error:
"The property expects Text values, but this rule produces incompatable table values"
I've tired ThisItem.RoomNumber but it's still not having it.
Is it saying that the item in the table is a table itself?
I'm struggling to fathom what exactly is wrong.
Hopefully that is enough info for somone to assist but feel free to ask for more.
Cheers,