Greetings to the community, I am new in the development of Power Apps and my questions is the following:
I am using the AttendanceApp tyo take attendance, I would like to know if the in any way that the Office.365Group.ListGroupMembers function returns only our members, currently it also takes the owners.
The information that the function returns is stored in a SharePoint list, what I want is to be able to filter the information so that it does not insert the owners in the SharePoint list
ForAll(
Office365Groups.ListGroupMembers(ClassDropdown.Selected.id).value;
Collect(
AttendanceRecord;
{
Title: GUID();
LessonId: attendance_list_guid;
Attendance: "Not taken";
ClassId: ClassDropdown.Selected.id;
LessonDate: TakeAttendanceDatePicker.SelectedDate;
StudentEmailId: Mail;
AttendanceTakenBy: "";
EndTime: Concatenate(
EndHourDropdown.Selected.Value;
":";
EndMinDropdown.Selected.Value
);
StartTime: Concatenate(
StartHourDropdown.Selected.Value;
":";
StartMinDropdown.Selected.Value
);
StudentName: DisplayName;
ClassName:ClassDropdown.Selected.displayName
}
)
);;
Thank you very much who can help me.