Hi All,
Here is an upgraded version of the Meeting Capture PowerApp
This is an all-in-one meeting notes tool
View meeting details, capture notes and pictures of whiteboards, upload files and pictures, record audio, assign Planner tasks and send to all meeting attendees in one click
Download msapp file from :
https://github.com/rdorrani/PowerApps/tree/master/MeetingCaptureV2
New Features
Thanks & Regards,
Reza
watch?v=bYYLWl3qwE0
Boa tarde amigo, essa configuração você entrar em contato que eu te ajuda a resolver esse problema caso ainda não tenha conseguido, basta editar e dar mais espaço entre as agendas.
This is a fabulous app - thank you very much. It is exactly what I was looking for.
Is there a way on adding not only planner tasks as in the Title but also some more information text or CheckLists within the Task? Could you help me with it? When I tried building it, i completely messed up the template somehow.
When we shared this app with external users, we are seeing issues. @RezaDorrani
@RezaDorrani Thanks for putting this app together!
I have an issue with the "New Outlook". The organizer no longer receives emails by default. They need to add their name to the export screen. Is there a way to fix this?
the date fix worked -- thank you!
This is an amazing update! Is there a way to add a 'teams meeting' option to the 'schedule meeting' screen? So that it creates a teams link for the scheduled meeting, which is how we do most of our meetings nowadays 🙂
I am trying to get the "Meeting" template working, but despite completing the "Invite" section with valid details, when I select the "Schedule" tab, no matter what Date/Time combination, I always get the message "No available times on selected date". Any ideas?
Hi,
In my organization, users have different calendar names related to the regional version (I don't know why) and it is necessary to retrieve the Id number using LookUp and in the current version of the template I see in AppOnStart below code
Collect(CalendarLocalizedLabel;{Value:"Calendar"};{Value:"Kalender"};{Value:"Təqvim"};{Value:"Kalendar"};{Value:"Calendari"};{Value:"Kalendář"};{Value:"Calendr"};{Value:"Calendario"};{Value:"Egutegia"};{Value:"Kalendaryo"};{Value:"Calendrier"};{Value:"Féilire"};{Value:"Am mìosachan"};{Value:"Kalanda"};{Value:"Dagbók"};{Value:"Kalenda"};{Value:"Kalendārs"};{Value:"Kalenner"};{Value:"Kalendorius"};{Value:"Naptár"};{Value:"Kalendarju"};{Value:"Agenda"};{Value:"Taqvim"};{Value:"Kalendarz"};{Value:"Calendário"};{Value:"Intiwatana"};{Value:"Kalendari"};{Value:"Kalendár"};{Value:"Koledar"};{Value:"Kalenteri"};{Value:"Maramataka"};{Value:"Lịch"};{Value:"Takvim"};{Value:"Senenama"});;
Concurrent(Set(MyCalendarID;LookUp(Office365Outlook.CalendarGetTables().value;DisplayName=LookUp(CalendarLocalizedLabel;Value=DisplayName).Value).Name);;
ClearCollect(AllFutureEvents;Office365Outlook.GetEventsCalendarView(MyCalendarID;Text(Today();DateTimeFormat.UTC);Text(DateAdd(Today();2;TimeUnit.Days);DateTimeFormat.UTC)).Values);Set(MyUserProfile;Office365Users.MyProfile().Id);
So I changed in V2 to below code and works well
Collect(CalendarLocalizedLabel;{Value:"Calendar"};{Value:"Kalender"};{Value:"Təqvim"};{Value:"Kalendar"};{Value:"Calendari"};{Value:"Kalendář"};{Value:"Calendr"};{Value:"Calendario"};{Value:"Egutegia"};{Value:"Kalendaryo"};{Value:"Calendrier"};{Value:"Féilire"};{Value:"Am mìosachan"};{Value:"Kalanda"};{Value:"Dagbók"};{Value:"Kalenda"};{Value:"Kalendārs"};{Value:"Kalenner"};{Value:"Kalendorius"};{Value:"Naptár"};{Value:"Kalendarju"};{Value:"Agenda"};{Value:"Taqvim"};{Value:"Kalendarz"};{Value:"Calendário"};{Value:"Intiwatana"};{Value:"Kalendari"};{Value:"Kalendár"};{Value:"Koledar"};{Value:"Kalenteri"};{Value:"Maramataka"};{Value:"Lịch"};{Value:"Takvim"};{Value:"Senenama"};{Value:"Ημερολόγιο"});;
Set(MyCalendarID;LookUp(Office365.CalendarGetTables().value;DisplayName=LookUp(CalendarLocalizedLabel;Value=DisplayName).Value).Name);;