Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Instance IDPerson.namePerson.age
Person1"Kim"25
Person2"Rick"30
Person3"Bob"35
Person4"Bob36

 

Simple cases

For this workaround we use the possibility to add fields to a text item in which we can model collects to give us a set of values which we can join into a presentable string. This would look similar to:

...

No Format
nopaneltrue
"Kim 25, Rick 30, Bob 35, Bob 36"

 

Unique strings and replacement

In cases where it is unwanted to add or where this still not results in a unique string (i.e. both Bobs having the same age) we can use some more complex expression to still give us the correct results for this solution we make use of the text function replace, add a unique element to each instance and replace it with an empty string. It will look like this:

...

No Format
nopaneltrue
"Kim, Rick, Bob, Bob"

Static text repeat

In a variation on this, we could also repeat static text. where this:

...