hello,
i have a sharepoint list with the column "Students" where i store data in this format "name.surname@domain.com,name.surname@domain.com" and so on...
inside my gallery i want the names appearing in the format "Surname N., Surname N."
if the column Students had only one student i could just use this code
Proper(Last(Split(First(Split(ThisItem.Students,"@")).Value,".")).Value& " " &Left(First(Split(First(Split(ThisItem.Students,"@")).Value,".")).Value,1)&". ")
but considering there is many... i should first create a table with all the emails and then apply the code above to each of them
i guess i should use with and forall function, but i don't know how, could anyone help?thanks

Report
All responses (
Answers (