I have a issue
I have a collection that gives me a list of CustomerID's depending on a selection.
I want to create a second collection with al records where the CustomerID = CustomerID of Collection1
Collect1
ClearCollect(colCustomerID,Distinct(Filter(Contracts,TypeID=MS_DD_Type.Selected.ID),CustomerID));
--> this collection works
Collection2
ClearCollect(colCustomers,Filter(CustomerList,CustomerID=colCustomerID.Result));
I have a list with customers in sharepoint
Holds only customer data like name email etc...
I have a contract list with hold the contracts
This list has a contractid, customerid, and producttypeid
I want to filter a customer list on producttypes (from a pulldown)