Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT Countries, CNT(Countries) AS nHowMany ;
FROM MyTable ;
GROUP BY Countries ;
ORDER BY Countries ;
INTO ARRAY aSomeArray
I want to have a field in a form whitch updates every time another country is somehow added to the database
danfreeman said:If that's the case, normalize the names of countries into their own tables, and this form field can simply report the Recno() of the Country table. If you bind the control to =Recno("country") it should even auto-refresh as other users add countries depending on your SET REFRESH setting.