Dear all,
I have the following table:

My application has two combo boxes and one label:
1. The first combo box has for Items the option to chose between [1,2,3]
2. The second combo box has for Items the option to chose between ["Aarde","Water", "Vuur"]
3. The label has currently the following formula: LookUp(Table1,Column1=ComboBox1.Selected.Value,Aarde)
For values in Column 1 with the formula:
1, the results label shows 10
2, the results label shows 20
3, the results label shows 30
I cannot seem to make the formula variable to combo box 2 ["Aarde","Water", "Vuur"], as it seems I can only get a working formula when I hardcode the values rather than variable with combo box 2.
I also tried with creating a label using formula Concat(ComboBox1.SelectedItems,ThisRecord.Value) and to reference the formula to this label, LookUp(Table1,Column1=ComboBox1.Selected.Value,Label1), but then my results are only Combobox1.
EDIT: I also tried to store a variable colName in LookUp(Table1, Column1 = ComboBox1_1.Selected.Value, colName), but the label still shows me only the combo box 2 value.
Thank you all in advance