@olsen9
Your If is in the wrong place from what I sent you.
And, you still need to actually send a Blank to the list.
{
Name1:
If(
IsBlank(ComboBox13.Selected.Mail),Blank(),
{Claims: "i:0#.f|membership|" & Lower(ComboBox13.Selected.Mail),
Department: "",
DisplayName: "",
Email: ComboBox13.Selected.Mail,
JobTitle: "",
Picture: ""
}
}
),
{
Name2:
If(IsBlank(ComboBox13_1.Selected.Mail), Blank(),
{Claims: "i:0#.f|membership|" & Lower(ComboBox13_1.Selected.Mail),
Department: "",
DisplayName: "",
Email: "",
JobTitle: "",
Picture: ""
}
}
),
Your formula is just a fragment of your entire formula, so it is hard to tell what else you might be doing and what the problem might be. But the above is the construct of what you need.
Ideally this would all be done from your comboboxes, but you can do it in this formula as well.