Hi,
I am a new user, can someone please help me with this query. I've tried number of different ways however cant seem to get the result I'm looking for.
I have an App, that users can a unbook a session from clicking a button, once cancelled I would like to record the users email, date and time of when they have cancelled.
The patch below works and adds the email address to Sharepoint list 'session'
Patch(
[@Sessions],
First(
Filter(
[@Sessions],
ID = ThisItem.ID
)
),
{'Cancelled Bookings': User().Email & ", " & ThisItem.'Cancelled Bookings'}
)
I would like to add the date and time alongside the email address in the same column on SharePoint. what's the best approach to do this ? can I amend this patch to include the date and time ? The SharePoint column setting is set-up as 'multiple line of text' do I need to change this ?
Thanking you in advance.