Hello,
I have an excel file which has two tables. I just have a dropdown box in powerapps and next to it I want to see a label with value which is referenced in table to the chosen option in dropdown (it's a number). Does anyone can help how to do it, please?
My table has two headers and dropdown is using values from one column and I want to see values from 2nd column in label.
Regards
Thanks!!! This gave me result I wanted 🙂
Thank You for Your reply. I tried it now and it's still not working as showing error below:
Did you mean something like this?
This is written on the Text property of the Label
LookUp(Table1,FirstName = Dropdown1.SelectedText.Value,Location)
Hello @marcy_pi ,
Kindly try this on the label text property
LookUp(Table2,DropDown.Selected.Value=ColumnNameTable2,ColumnToReturn)