I am retrieving data for use in a pivot table in Excel, but Excel does not recognize the date format.
I use..
CONVERT(date, [DateTimeSelected]) AS [Search Date]
which shows as 2013-08-01 in my request.
When it gets to my Excel pivot table through my SQL connection, it looks the same, but the filters are not recognized as a date.
Here you can see how Excel sees it as text on the left and right, what it should look like in Excel when it recognizes it as a date.

Any ideas please?
Thanks; -)
I tried all this, but only the original B.Depart (time date) comes as a date, none of the converted columns is read by Excel as a date ...
I get many formats, but Excel doesn't have to convert dates
B.Depart AS 'Holiday Date time', CONVERT(VARCHAR(10), B.Depart,103) AS 'Holiday Date', DATENAME(weekday, B.Depart) AS 'Holiday Day Name', CONVERT(CHAR(2), B.Depart, 113) AS 'Holiday Day', CONVERT(CHAR(4), B.Depart, 100) AS 'Holiday Month', CONVERT(CHAR(4), B.Depart, 120) AS 'Holiday Year', CONVERT(VARCHAR(10),B.Depart,10) AS 'New date', CONVERT(VARCHAR(19),B.Depart), CONVERT(VARCHAR(10),B.Depart,10), CONVERT(VARCHAR(10),B.Depart,110), CONVERT(VARCHAR(11),B.Depart,6), CONVERT(VARCHAR(11),B.Depart,106), CONVERT(VARCHAR(24),B.Depart,113)