I am trying to write a query to calculate time values but the values appear in number format rather than time. The following is the query that I have wrote:
SELECT Agents.LOB, Sum([ExternalShrinkage-Manager].[External Shrinkage]) AS [SumOfExternal Shrinkage]
FROM Agents INNER JOIN [ExternalShrinkage-Manager] ON Agents.[Manager Name]=[ExternalShrinkage-Manager].[Manager Name]
GROUP BY Agents.LOB;
I have set the format as Date/Time and changed the format to Short Time but it still shows the results as Values rather than Time.
Could somebody help me please.
SELECT Agents.LOB, Sum([ExternalShrinkage-Manager].[External Shrinkage]) AS [SumOfExternal Shrinkage]
FROM Agents INNER JOIN [ExternalShrinkage-Manager] ON Agents.[Manager Name]=[ExternalShrinkage-Manager].[Manager Name]
GROUP BY Agents.LOB;
I have set the format as Date/Time and changed the format to Short Time but it still shows the results as Values rather than Time.
Could somebody help me please.