Hello, I am hoping someone can help me with the following.
I created a string variable in order to have multiple inputs from a collection registered in a single form field. As an example, one should imagine I am creating a Sharepoint database of cat owners and their cats. To store all the all the cat names of one owner in one record, I used the concatenate function as follows:
Concat(
CatList,
Cat_Name & "; "
)
This example would have a collection column with several cat names listed as follows:
However, now I would like to be able to display these names separately again in a Canvas screen. I assume the Split() function is needed to do so, but I don't know how to execute it. How would I effectively display this data?
What I would like it to look like is again something like this:
| Cats | Colors | Sex |
| Figo | Red | Male |
| Fluffy | White | Female |
| Bob Jr | Black | Male |
I would have to know the code which is necessary to retrieve the data from a single selected record in Sharepoint, but also the best field in which to display it. I assume I would have to turn it back into a collection gallery? And how would I most effectively display several of these categories (e.g. the cat's colors, sex, race, etc.), would that be possible within one collection or would it be easier to have a separate collection for each descriptive.
I hope someone is able to help me out on this one!