Hey all.
I am trying to default and hide a text data card value based only when its based on a certain form.
Example - I have 3 forms all connected to the same list (new, modify, extend). I am trying to default the "contractor business name" data card to read "New Contract Request" when the user selects the "newrecform" (New contract request) and then make it not visible for users to change. I am thinking some kind of IF statement but having trouble. Open to any ideas.
Thanks!
Solved! Go to Solution.
Hi @Dhubach1 ,
If you have a dedicated new form, this should be easy - make the Default of the Text box "New Contract Request" and the DisplayMode of the Text box DisplayMode.View
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.
Visit my blog Practical Power Apps
Hi @Dhubach1 ,
If you have a dedicated new form, this should be easy - make the Default of the Text box "New Contract Request" and the DisplayMode of the Text box DisplayMode.View
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.
Visit my blog Practical Power Apps
Perfect. Thank you very much! The code reads like this if anyone else is looking
If(NewRecForm.Mode = New, "New contract request", Parent.default)
Then hide the visibility