Greetings:
I have a data table, 'Change Requests' with a Lookup column called CR_Status that has about nine different status values. Now I want to display all the choices from that column in a combo box that is not inside a form or gallery. How do I do that? I tried
Choices('CR_Status (Change Requests)')
This gives me 9 rows (I think) in the dropdown but they are all blank. I also tried
Distinct('Change Requests', CR_Status)
but I get blank values there too.
I have confirmed that:
- CR_Status is a Lookup
- each item in the Change Requests table has a CR_Status
- There are no filters in the combo box
- The Distinct function does NOT work on another column that also has data
- Refreshing the data source does not resolve the problem.
Why am I getting blank values? If I use the first option (Choices...) in a Combo Box within an EditForm with 'Change Requests' as the data sourceI get the correct behavior. Can'r you have a Combo Box outside of a form?
Thanks!