S Superock Registered User. Local time Today, 11:32 Joined Nov 3, 2004 Messages 40 Mar 15, 2005 #1 When you export a qry to Excel, is there a way to make the Column heading the same as your caption. When I export now I get colum heading FirstName, Lastname where I would like to have First Name, Last Name
When you export a qry to Excel, is there a way to make the Column heading the same as your caption. When I export now I get colum heading FirstName, Lastname where I would like to have First Name, Last Name
fpendino Registered User. Local time Today, 10:32 Joined Jun 6, 2001 Messages 73 Mar 15, 2005 #2 You can change what's being outputted from within the query. In SQL view it would look like this. SELECT tblEmp.FName AS [First Name], tblEmp.LName AS [Last Name] FROM tblEmp; Notice that it's selecting the field by it's original name then it has 'as whatever' following.
You can change what's being outputted from within the query. In SQL view it would look like this. SELECT tblEmp.FName AS [First Name], tblEmp.LName AS [Last Name] FROM tblEmp; Notice that it's selecting the field by it's original name then it has 'as whatever' following.