Hi all,
I have a Multiple Records form. The form accesses a table with meaningless data, a SELECT Data Type is used on one of the fields to return a more meaningful value from another table. In this case it returns a name for what is an id.
For the initial sorting of the table (names in alphabetical order) I use ORDER BY in the SQL section;
(SELECT name FROM uk_d_bsc WHERE name_id = uk_rte_daily.today_id) ASC
Where uk_rte_daily is the table used in the application.
My question is this; If I try to sort the column it will only sort by the name id and not the displayed text, how can I click for it to sort by the displayed value and not the table held value?