Hello Everyone,
I am trying to create a teams meeting
I have used a clearcollect
Set(CalendarId,LookUp(Office365Outlook.CalendarGetTablesV2().value, name = "Calendar"));
ClearCollect(Meeting,Office365Outlook.V4CalendarGetItems("Calendar").value);
Now I took a gallery and showing all my calendar details there like subject,body etc
I also want to show the above highlighted stuff in the gallery ie., MeetingID,Passcode and the link ie., click here to join the meeting
If anyone know how can I show that thing in the gallery please let me know.
Thank you so much for understanding and reading this, really appreciated.
Solved! Go to Solution.
Hi @PDRC ,
I made a sample for you.
TrimEnds(Substitute(LookUp(Split(PlainText(ThisItem.body),Char(10)),"Passcode" in Result).Result,"Passcode:",""))
TrimEnds(First(Split(Last(Split(PlainText(ThisItem.body),LookUp(Split(PlainText(ThisItem.body),Char(10)),"Meeting ID" in Result).Result)).Result,"Passcode")).Result)
First( Split( Last( Split( First( Split(ThisItem.body,"Click")).Result,"href=""")).Result,"""")).Result
Best Regards,
Wearsky
Hi @PDRC ,
You can insert a html text control into gallery and set its HtmlText property to:
ThisItem.body
Best Regards,
Wearsky
@v-xiaochen-msft
thanks you so much for the reply
but is it possible to store the below content(meeting id,passcode and link) in Dataverse and retrive the same from database?
because when I am creating a meeting I am storing in dataverse database and I am retriving it in gallery from the same database at that time these links are lost and I am not able to connect to the meeting.
That's why if I can get these links and code separately it will be helpfull to store in database and when I will retrive in canvas I am able to join the meeting.
Hi @PDRC ,
I made a sample for you.
TrimEnds(Substitute(LookUp(Split(PlainText(ThisItem.body),Char(10)),"Passcode" in Result).Result,"Passcode:",""))
TrimEnds(First(Split(Last(Split(PlainText(ThisItem.body),LookUp(Split(PlainText(ThisItem.body),Char(10)),"Meeting ID" in Result).Result)).Result,"Passcode")).Result)
First( Split( Last( Split( First( Split(ThisItem.body,"Click")).Result,"href=""")).Result,"""")).Result
Best Regards,
Wearsky