Hello,
I have this function
If(
User().Email in Split(
ThisItem.'Kto polubił';
";"
);
Notify("Możesz polubić propozycję tylko raz."; NotificationType.Error);
Patch(
IdeaBox_1;
ThisItem;
{
Polubienia: ThisItem.Polubienia + 1;
'Kto polubił': ThisItem.'Kto polubił' & ";" & User().FullName & ";" & User().Email
}
))
As you can see Kto polubił field stores users full name and email when button is clicked. It is saved - when another user clicks it it then stores his date as well it is this format
;Name;Email;Name;Email
I would like to create a gallery/data table with this data and show it as a different record.
I created a gallery2 and in Text I provided ThisItem.'Kto polubił'
It shows record like that:
;Name;Email;Name;Email
They are all showed as one record. It doesn't look good.
Also this function shows ; before the first name.
Is it possible to make a gallery that will show data like that:
Who liked?
1. Name, Email
2. Name, Email
3. Name, Email