I am trying to display the contents of this field, or blank if the field is empty. This does not work - and leaves the old data showing:
If(
IsBlank(First(InspectionDetailsCollection).Notes) || IsEmpty(First(InspectionDetailsCollection).Notes),
"",
First(InspectionDetailsCollection).Notes
)
This blanks it out with a space, but then is an invalid input when the form is submitted:
If(
IsBlank(First(InspectionDetailsCollection).Notes) || IsEmpty(First(InspectionDetailsCollection).Notes),
" ",
First(InspectionDetailsCollection).Notes
)
Solved! Go to Solution.
@stapes
Could you please show a capture from InspectionDetailsCollection?
Have you tried with Blank() instead of "" or " "?
@stapes
Could you please show a capture from InspectionDetailsCollection?
Have you tried with Blank() instead of "" or " "?
User | Count |
---|---|
168 | |
96 | |
77 | |
72 | |
59 |
User | Count |
---|---|
210 | |
167 | |
97 | |
94 | |
78 |