@alt88
Please try the following. This method does not require moving the Labels. In the Text property of the Labels place the following
Label1: If(CountRows(ComboBox1.SelectedItems)>0, Index(ComboBox1.SelectedItems,1).Value)
Label2: If(CountRows(ComboBox1.SelectedItems)>1, Index(ComboBox1.SelectedItems,2).Value)
Label3: If(CountRows(ComboBox1.SelectedItems)>2, Index(ComboBox1.SelectedItems,3).Value)
Label4: If(CountRows(ComboBox1.SelectedItems)>3, Index(ComboBox1.SelectedItems,4).Value)
Please remember to give a 👍 and accept my solution as it will help others in the future.