Hello everyone 🙂
I created an app that track activities duration for a x number of people. The user of the app will need to insert in a sharepoint form in the app the names of the indidivual:

individual1
individual2
individual3
and so on
distributed vertically as above and not separeted by a coma.
The issue is that if I want to analyze the data collected I can't do it for each individual because the individuals name are registered in the sharepoint in one cell (all together). What I would like to do is that every time the user press the button start to collect the start time of the activity and the button end the app would create one entry for each individual inserted in the form.
From what I understood the ForAll function could help me achieve that but I cant make it work.
The formula in my Start Button is the following ( similar to the end one):
Set(varNewItem, Patch('Coaching Tracker', Defaults('Coaching Tracker'), {'Created by': User().Email, 'Analyst''s EID': DataCardValue12.Text, 'Activity Performed': DataCardValue13.Selected, 'Code Used': DataCardValue14.Selected, 'Start Time': Now(), 'Session Active': true}));
Anyone can help me to achive that? thanks a lot