Hi Mike,
Thanks again for the reply and help! So close, but yet so far!!
CombiBox Source = Collecton name "Set1" with two Columns "Column 1" & "Column 2"
This created the Collection "Set1" - ClearCollect(Set1, {Column1: "1", Column2:"x"}, {Column1: "2",Column2:"y"} ,{Column1: "3",Column2:"z"})
ComboBox.Items = Set1.Column2
Button 2 = Clear('List1') ; ForAll(ComboBox.SelectedItems,Collect('List1',{Column1:Var1.Text,Column2:Var2.Text,Column3:Var3.Text,Column4:Set1.Column2}))
Returns: [object Object],[object Object],[object Object] (Screenshot 3 - attahced)
Using a lookup returns the last value in the SelectedItems only: (Screenshot 4 - attahced)
Button 2 = Clear('List1') ; ForAll(ComboBox.SelectedItems,Collect('List1',{Column1:Var1.Text,Column2:Var2.Text,Column3:Var3.Text,Column4:LookUp(Set1,Column2 = ComboBox.Selected.Column2,Column2)}))
Thanks again for your help!
Ian