I have database with a table that has a text field. When diplayed though I only wish to disply the first 20 charachters from this text field.
Query = "select table1.rec_id as 'Record ID', table1.NOTES as 'NOTES' from table1";
How do I limit the displayed NOTES field to only the first 20 chars.
thanks