So I have a dropdown populated with a column table "Bds":
Distinct(Bds,Categoria)
I want the user to select a category from that dropdown and populate a textbox with data from that same table, for example I have this table example:
| Categoria | Bd1 |
| Categoria 1 | Result |
As I understood if I use this formula on Default of the Textbox should do the trick but it is not bringing the result:
LookUp(Bds,
Categoria =
"Dropdown.Selected.Result",
'Bd1')
It is Looking in Bds table, column Categoria for the selected dropdown result and it should bring me "Result" As the dropdown is populated within the same table there should be a exact match. What am I doing wrong?