I have text fields in my app that are null, because a user didn’t fill them out.
I removed all the visibility filters, but the fields with null values do not show on that record.
How do I display the component field on the record (ie: category) even if the user doesn’t populate the field when adding the item?
1 Like
It depends on the type of component that is displaying it. Say you’re using something like a Fields component, the field doesn’t show if the value is empty. It’s by design (and I would really want it to be customizable).
It would then come to either you using an If-Then-Else column to return N/A if the real value is empty, or use an AI component to force the same layout but support empty values.
1 Like