I am having problems getting my ComboBox to display any data.
I have built a Flow that returns a table of two columns using an SQL Stored Procedure. This has been run & tested successfully.
I have added the following to the OnVisible Property of my Screen:
ClearCollect(lookupYears, LookupAllYears.Run())
In my ComboBox Properties, I have added lookupYears as my Data source, Layout Double, and set Primary text, Secondary Text & SearchField.
In Items I have lookupYears.
When I run this - there is no data in my ComboBox. What am I missing?
Update:
This is the first form in a series. When I returned to the form, the data loaded correctly. It would be appear that OnVisible does not work first time!