Hey all-
So I have a sharepoint list with many content types. Since you can't select content type form in Powerapps, I just customized each screen to match each content type. However, I would love to only use one screen for viewing and not separate view screens for each content type. Right now, if it was one screen, every single column would have to show up on the detail screen. Is it possible to only columns/fields where people have input data?
Solved! Go to Solution.
Hi @TorreyFalconer ,
Do you want to only display fields that are not empty value in a display form?
If so, you just need to set the fields' datacards' Visible.
I've made a similar test for your reference:
1)choose all the fields to display in the display form
2)Set all the datacards' Vsible like this:
!IsBlank(ThisItem.fieldname) //please replace the field name with the datacard belongs to
And then, only the field's data is not empty, the field will display.
Best regards,
You can control what shows by using the Visible property. You can use the UpdateContext() to set each "Type" option you have and then put each column to only show for the "Type" you want it to show for.
If you think that will help and want more detail let me know. Is this showing in a Form or Gallery...where do you mean you want it to show? Will work either way, just curious.
Hi @TorreyFalconer ,
Do you want to only display fields that are not empty value in a display form?
If so, you just need to set the fields' datacards' Visible.
I've made a similar test for your reference:
1)choose all the fields to display in the display form
2)Set all the datacards' Vsible like this:
!IsBlank(ThisItem.fieldname) //please replace the field name with the datacard belongs to
And then, only the field's data is not empty, the field will display.
Best regards,
User | Count |
---|---|
139 | |
132 | |
75 | |
72 | |
69 |
User | Count |
---|---|
213 | |
200 | |
64 | |
62 | |
54 |