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,
Thanks Carlos.
I worked it out a mere 3 minutes before you answered but as you also explained why it worked I'll give you the accepted solution.
Within an AddColumns call for the table TimesNoFormat, all members of that table are in scope - so if you want to access the 'New Times' property, you can do it directly. When you specified "TimesNoFormat.'New Times'" as an argument of the Concatenate function, then you went you went out of the record scope and back to the "global scope", retrieving a table with all values for the 'New Times' property of TimesNoFormat. If you change your expression to this:
AddColumns( TimesNoFormat, "RoomNumber", Concatenate( ThisItem.Title, 'New Times' ) )
I believe you should get the result you want.
Hope this helps!
Solved it b removing "ThisItem" and the table name:
AddColumns( TimesNoFormat, "RoomNumber", Concatenate(Title,'New Times') )
No idea why it worked but it does.
WarrenBelz
146,552
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
65,928
Most Valuable Professional