Hi Experts,
I have the following text string
Text = Concat(selectedDesks, Title, ", ")
Desk 5, Desk 5, Desk 4, Desk 5, Desk 5, Desk 4, Desk 4, Desk 4, Desk 3, Desk 3, Desk 2, Desk 4, Desk 4, Desk 2, Desk 5, Desk 4, Desk 4, Desk 4, Desk 4, Desk 2, Desk 2, Desk 9
How can I get last text?
Result is Desk 9
Thanks.
It depends on the type of the SharePoint column you want to save the data.
If it is a simple text, then the formula above is enough. If is a choice or a lookup column then you can use
LookUp(Choices(TableName.ColumnName),Value=Last(selectedDesk).Title))
yes. that's right. thank you so much!
It works fine. thanks.
Do you know how can save last desk title to SharePoint when click on Confirm button?
You could maybe just try to retrieve the last value from selectedDesks like so:
Last(selectedDesks).Title