Hi,
I have this SP and customize the form using PowerApps. The condition I need is that if the item selected and the specific field column has answered, the form mode is view and can't be edited, and if the specific column is null then the formmode will be in View Mode and can be edit the Item.
Thank you in advance.
Solved! Go to Solution.
Hello @zRc,
Consider Field Name is : txtboxField
Then in all other fields then go to VISIBLE property then write the below code
If(IsBlank(txtboxField),DisplayMode.Edit,DisplayMode.Disabled)
Please mark as Answer if it is helpful and provide Kudos
Subscribe : https://www.youtube.com/channel/UCnGNN3hdlKBOr6PXotskNLA
Blog : https://microsoftcrmtechie.blogspot.com
Hello @zRc,
Consider Field Name is : txtboxField
Then in all other fields then go to VISIBLE property then write the below code
If(IsBlank(txtboxField),DisplayMode.Edit,DisplayMode.Disabled)
Please mark as Answer if it is helpful and provide Kudos
Subscribe : https://www.youtube.com/channel/UCnGNN3hdlKBOr6PXotskNLA
Blog : https://microsoftcrmtechie.blogspot.com
Hi @rampprakash
Visible property only accept true or false value. Using the syntax provided, I use this instead in the DisplayMode, change the disabled to View and it works.
Much better if the form itself will be in DisplayMode.View but I'm okay with it.
Kudos to @rampprakash
Thank you.
User | Count |
---|---|
121 | |
87 | |
87 | |
75 | |
66 |
User | Count |
---|---|
215 | |
180 | |
138 | |
96 | |
82 |