Hello Folks,
I have a scenario where I have two Text Inputs. In the first Text Input box, users will type their asset number and the second Text Input has to show a different field value based on the asset number typed.
Here is the formula I am trying to attempt
LookUp(Table1,TextInput2.Text,Description)
But I am getting the following error
I have tried `Filter and Search` function as well. but no luck.
Any help is appreciated. Thanks
Solved! Go to Solution.
Hi @ragavanrajan ,
You will need
LookUp(
Table1,
YourFieldName=Value(TextInput2.Text)
).Description
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @ragavanrajan ,
You are missing the field name you are trying to match
LookUp(
Table1,
YourFieldName=TextInput2.Text
).Description
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @WarrenBelz Thanks for your reply. I think nearly there. Still getting below warning. How do we solve this please.
Hi @ragavanrajan ,
You will need
LookUp(
Table1,
YourFieldName=Value(TextInput2.Text)
).Description
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
User | Count |
---|---|
229 | |
109 | |
93 | |
57 | |
30 |
User | Count |
---|---|
291 | |
126 | |
106 | |
62 | |
57 |