Hello,
I have a sharepoint list that is connected to gallery. All the users that clic the button to connect are listed in this galery (data in sharepoint). In addition I have created an Excel list that have the following data: UserEmail, UserFullName, PhoneNumber
Now I would like to add a phone icon to the gallery so that users can click this icon and it will call do this particular person. (Data in gallery shows name and photo of the person).
I was thinking of using Launch function, but I cannot mat phone numbers from excel to the particular user from the gallery. Do you maybe know how to solve this issue?
Solved! Go to Solution.
Hi @Bartek1 ,
There should be a common column in SharePoint list as Excel to store the User Name or User Email.
For example, there is Email column in Sharepoint list storing the email of user, then you should set the OnSelect property of phone icon as follows.
Launch("tel://" & LookUp('Table Name', UserEmail= Thisitem.Email).PhoneNumber)
If there is a Person Column is the list, the code should be like this:
Launch("tel://" & LookUp('Table Name', UserEmail= Thisitem.PersonColumn.Email).PhoneNumber)
Hope this helps.
Sik
Hi @Bartek1 ,
There should be a common column in SharePoint list as Excel to store the User Name or User Email.
For example, there is Email column in Sharepoint list storing the email of user, then you should set the OnSelect property of phone icon as follows.
Launch("tel://" & LookUp('Table Name', UserEmail= Thisitem.Email).PhoneNumber)
If there is a Person Column is the list, the code should be like this:
Launch("tel://" & LookUp('Table Name', UserEmail= Thisitem.PersonColumn.Email).PhoneNumber)
Hope this helps.
Sik
User | Count |
---|---|
259 | |
111 | |
97 | |
48 | |
41 |