Hello everyone,
I have a question regarding a vlookup in powerapps.
My Lookup is simple, if a certain field has a certain value, a Lookup is active, if not, I'd like the datacard to be editable.
So far this is how my "Text" Value looks like for the Label :
If(
DataCardValue271_1.Selected.Value = "ABCDEFG";
LookUp(
Table1;
Column1 = TextInput2.Text;
Column2
);
DisplayMode.Edit
)
For me the issue is where there is written "DisplayMode.Edit", do you have any idea how I can make the field editable if the result of the IF is false 😀
Thank you and have a good week !
EDIT :
It looks like you can't edit a Label, silly from me,
However, now that I changed from Label to Text Entry I can modify the text, however do you know if I can lock the Text Entry if the IF is true (while performing lookup at the same time) ?