Hello,
I have a sharepoint list customize form using PowerApps, and i have a field named Compensating Controls Acceptance in SharePoint list which data type is single line item, but in customize form power apps, it is a checkbox.
Addition to that, I have different views for SharePoint customize form.
Now, my concern is that, in Display form, the value of that field doesn't appear.
For example, I have tick the checkbox, and in SharePoint list, it captures the data like "True" otherwise "False".
And I want to display the checkbox with check/tick but it will only display without check/tick value..
Here's the formula I created for Display form:
Solved! Go to Solution.
@jaina Set Default property of check box control on display form/screen to:
If(ThisItem.'Compensating Controls Acceptance' = "true", true, false)
Please click Accept as solution & 👍 if my answer helped you to solve your issue. This will help others to find the correct solution easily. If the answer was useful in other ways, please consider giving it 👍
Best Regards,
Ganesh Sanap
Hello.
The best way is to set the data type in Sharepoint List to boolean, but this might work aswell:
Just set the Checkbox1_1.Default to If(ThisItem.'Compensating Controls Acceptance' = "true", true)
@jaina Set Default property of check box control on display form/screen to:
If(ThisItem.'Compensating Controls Acceptance' = "true", true, false)
Please click Accept as solution & 👍 if my answer helped you to solve your issue. This will help others to find the correct solution easily. If the answer was useful in other ways, please consider giving it 👍
Best Regards,
Ganesh Sanap
Hello.
The best way is to set the data type in Sharepoint List to boolean, but this might work aswell:
Just set the Checkbox1_1.Default to If(ThisItem.'Compensating Controls Acceptance' = "true", true)
hi @proxyprochy @ganeshsanap , thanks for the response, i tried both your solution, but still the same. i tried to close the window and re-open again still does not work.
hi @proxyprochy @ganeshsanap , i tried again, i miss placed the formula and it works already. thank you so muuch for the help!
User | Count |
---|---|
251 | |
102 | |
94 | |
47 | |
37 |