
Ungroup(
AddColumns(
Filter(TeachersProfiles, CreatedBy.Email = User().Email),
"FlattenedClasses", ClassesTaught
),
"FlattenedClasses"
)
This creates a flat list of class values from the multi-select column.
ThisItem.Value
…in the label to show each class name.
Patch(
TeachersProfiles,
LookUp(TeachersProfiles, CreatedBy.Email = User().Email),
{
ClassesTaught: Remove(ClassesTaught, ThisItem)
}
)
Helpful Resources
If this helped or could help others in the community, feel free to give it a like or a kudo — it helps surface useful answers for everyone!