Hi All,
I'm having a few controls, named DatePicker2 for the Date field, Combobox1_1 for the Level field, Combobox2 for the Meeting Room field, Dropdown1 for the Start Time field, and Dropdown1_1 for the End Time field as below.

The values in the Dropdown1 and Dropdown1_1 are actually the column names from my Sharepoint list called "Test".
The columns in my Sharepoint list are as below:

So the problem I'm currently facing is, I would like to output the value under the column selected in Start Time field while fulfilling the conditions from my Sharepoint list using the lookup function, where the conditions are from the DatePicker2, Combobox1_1, Combobox2 while referring to column from selection of Dropdown1, it outputs the value selected in the Start Time field instead. My current lookup function in a Label is as below:
LookUp(Test,And(Text(BookDate,"dd/MM/yyyy")=Text(DatePicker2.SelectedDate,"dd/MM/yyyy"),Levels=ComboBox1_1.Selected.Result,MeetingRooms=ComboBox2.Selected.MeetingRooms),Dropdown1.SelectedText.Value)
For example, taking the values selected in my screenshot, the output is "8am" instead of the value under column "8am".
Any idea why is this happening? Hope I've explained the issue clear enough, will try to provide further details if necessary.