I was given this code that worked great but I need to tweak it.
TRANSFORM
First(Format([StartDateTime],"HH:MM")) AS ValFld
SELECT YourTable.Name
FROM YourTable
GROUP BY YourTable.Name
PIVOT Format(Int([StartDateTime]),"dd-mm-yy");
row is name column is date and value is starttime I need to...