Hi everyone,
I want the following:
a table with two columns : display name - member check
the first column contains the display name of AzureAD group members - the second one tells weather he belongs to specific group or not.
then I would filter it to show only people with "false" values and put them in a dropdown list.
I inserted a button with onselect :
ClearCollect(StudentsList,
AddColumns(AzureAD.GetGroupMembers (Dropdown8.Selected.Value).value,
"MemberCheck",AzureAD.CheckMemberGroupsV2(Dropdown7.Selected.id,["7e55aee4-c0a7-4f38-99cb-e52a3a8d3110"]).value
where dropdown8 contains the group ID,
and dropdown7 contains members ID
when I inserted a datatable with Items= studentlist, it showed everything except the membercheck column and phonenumber were identified as complex and give me blank column.
how could I fix this and what is "complex"?