Hi
I have 2 sharepoint list
I have the following code to show in a drop down list all those records that are not assigned to the current user
Filter(
Choices([@BillToAssign].BillTo),
Not(
Value in Concat(
Filter(
BillToAssign,
Title = currentUser.FullName
).BillTo,
BillTo.Value
)
)
)
However I only want to display those values that are active = "Yes"
Any assistance would be greatly apreciated
Thanks