Hi @patty789 ,
Could you show me the structure of the list that includes PositionTitle column and the fields' data type?
I need to know how to filter the Manger's PositionTitle.
Does this field belong to the same list with Approve field?
I assume that
1)you have a list named list1, with columns: people(person type), PositionTitle( text type)
2) have a list named list2, with columns: Approvefield( single choice type)
3)how to set the combo box:
set the combo box's Items:
Choices(listname.choicefieldname)
set the combo box's DefaultSelectedItems:
If(
LookUp(list1,User().Email in peoplefield.Email,PositionTitle)="Divisional President",
{Value:Approve},
)
//if current user's position tile is Divisional President in list1, then this combo box will display Approve automatically.
If you want to update this choice field by using this combo box, you just need to use formula like this:
Patch(..,....,{choicefieldname:ComboBox1.Selected})
Best regards,