Query - Create custom column headers e.g. LIST STU STU.ID STU.U1 AS "IEP"
For reports with duplicate or non-meaningful column headers add an 'as' verb to the query to for the column header:
LIST STU STU.ID STU.U1 as "IEP" would yield:
Student ID | IEP | ...
112345 | IEP | ..
also for description fields instead of DC_ xyz
LIST STU STU.ID STU.PED? AS "Parental Education" STU.GR, ...
20
votes
ksteinbrecher
shared this idea