Hi Bi,
Thank you for the update and confirmation. You can try these other steps.
Okay, here's how to actually fix it in 3 steps:
Step 1: Use a Combo Box (not a Dropdown)**
Add a Combo box to your app. In the Items property, put this:
'MyDataverseTable'
Step 2: Set Up Display and Search**
Go to the Combo box's advanced settings and change these:
DisplayFields = [YourCustomColumn1,YourCustomColumn2]
SearchFields = [YourCustomColumn1,YourCustomColumn2]
This makes the box show and look for stuff in your columns.
Step 3: Update Your Data
After you add columns in Dataverse, hit Refresh under the Data tab in Power Apps or use this code:
Choice or Lookup Columns?
Use the Choices() thing:
Items = Choices('MyDataverseTable'.Status) // Status is a choice column
Then, set DisplayFields = [Value].
Check Your Access
I hope this helps.
Best Regards,
Noel