I have a form users get to from separate screen that populates:
FormDemo
Item: If(EntryTypeVar="New", Defaults(tblMember), EntryTypeVar="Edit", MbrSearchResults.Selected)
11 of the 12 fields in the form, some text boxes some drop-downs, populate and pull in data from tblMember (for now excel based, eventually will be a sql table). However, I have one field a drop-down called Marital_Status that is blank. When I create a new entry, it writes it fine, I can exit the form, go back, and find the entry. However, for the 1,000 existing entries that have already been created, the drop-down appears empty.
DataCardValue10
Items: Distinct(tblMarritalStatus, Marital_Status) -- this works fine for new entries,
Default: Parent.Default
I have another drop-down in the same form referencing tblState, same exact set-up as above, and it pulls in previous entries and lets me create new ones without issue. There are no error warnings wither, so I'm baffled.